FetchData.fromBytes constructor
Use the passed bytes
as the source
of the FetchData.
The mimeType
defaults to application/octet-stream
Implementation
FetchData.fromBytes(List<int> bytes,
{String mimeType = 'application/octet-stream'})
: _bytes = bytes,
_type = _FetchDataType.bytes,
_mimeType = mimeType;