XFile.fromData constructor
      
      XFile.fromData(})
     
    
Construct a CrossFile object from its data.
On the web, the path is ignored if the bytes are provided,
as the underlying Blob URL is used as the path.
Implementation
XFile.fromData(
  Uint8List bytes, {
  String? mimeType,
  String? name,
  int? length,
  DateTime? lastModified,
  String? path,
  @visibleForTesting CrossFileTestOverrides? overrides,
}) : super(path) {
  throw UnimplementedError(
    'CrossFile is not available in your current platform.',
  );
}