Turns out UnmodifiableUint8ListView is used internally as an immutable wrapper around embedded data.
This means TypedDataSpecializer would not inline any virtual accesses through Uint8List interface - because UnmodifiableUint8ListView introduces a third-party implementor which does not follow uniform _TypedData layout.
We should check if we leaving calls on any hot code paths due to this - and look into potentials ways to mitigate it.
/cc @mkustermann