TransferableTypedData.fromList constructor - TransferableTypedData - dart:isolate library (original) (raw)

description

TransferableTypedData.fromList(

  1. List<TypedData> list )

Creates a new TransferableTypedData containing the bytes of list.

It must be possible to create a single Uint8List containing the bytes, so if there are more bytes than what the platform allows in a single Uint8List, then creation fails.

Implementation

external factory TransferableTypedData.fromList(List<TypedData> list);