File constructor

File(
  1. List<Object> fileBits,
  2. String fileName,
  3. [Map? options]
)

Implementation

factory File(List<Object> fileBits, String fileName, [Map? options]) {
  if (options != null) {
    var options_1 = convertDartToNative_Dictionary(options);
    return File._create_1(fileBits, fileName, options_1);
  }
  return File._create_2(fileBits, fileName);
}