FileNotFoundException.fromJson constructor

FileNotFoundException.fromJson(
  1. Map<String, dynamic> jsonSerialization
)

Implementation

factory FileNotFoundException.fromJson(
  Map<String, dynamic> jsonSerialization,
) {
  return FileNotFoundException(
    message: jsonSerialization['message'] as String,
  );
}