bytesToFile method

File? bytesToFile(
  1. Uint8List? bytes
)

Implementation

File? bytesToFile(Uint8List? bytes) =>
    bytes != null ? File.fromRawPath(bytes) : null;