fromTyped static method

Pointer<NativeBuffer> fromTyped(
  1. TypedData data
)

Implementation

static Pointer<NativeBuffer> fromTyped(TypedData data) {
  final bytes = data.buffer.asUint8List();
  return fromBytes(bytes);
}