saveFontToDeviceFileSystem function
By default, file IO is stubbed out.
If the path provider library is available (on mobile or desktop), then the
implementation in file_io_desktop_and_mobile.dart is used.
Stubbed out version of saveFontToDeviceFileSystem from
file_io_desktop_and_mobile.dart.
Implementation
/// Stubbed out version of saveFontToDeviceFileSystem from
/// `file_io_desktop_and_mobile.dart`.
Future<void> saveFontToDeviceFileSystem({
required String name,
required String fileHash,
required List<int> bytes,
}) {
return Future.value(null);
}