open method Null safety

FutureOr<List<Mapping>> open(
  1. XFile file
)
override

open returns the supported list of Mapping for the given XFile file.

Implementation

@override
FutureOr<List<Mapping>> open(XFile file) async {
  final zip = await ZipImport().open(file);
  throw UnimplementedError();
}