NativeFile.fromPlatformFile constructor

NativeFile.fromPlatformFile(
  1. PlatformFile file
)

Constructs a NativeFile from a PlatformFile.

Implementation

factory NativeFile.fromPlatformFile(PlatformFile file) => NativeFile(
  name: file.name,
  size: file.size,
  path: PlatformUtils.isWeb ? null : file.path,
  bytes: file.bytes,
  stream: file.readStream?.asBroadcastStream(),
);