openFileWithBytes static method

Future<void> openFileWithBytes(
  1. List<int> bytes,
  2. String? name,
  3. String type
)

Implementation

static Future<void> openFileWithBytes(
    List<int> bytes, String? name, String type) async {
  await ModernFormFilePlatformHelper.openFileWithBytes(bytes, name, type);
}