FakeFilePickerPlatform constructor

FakeFilePickerPlatform()

Implementation

FakeFilePickerPlatform() {
  resultToReturn = FilePickerResult([
    PlatformFile(
      name: 'test_image.png',
      size: _testPngBytes.length,
      bytes: _testPngBytes,
    ),
  ]);
}