$FileLocation.fromJson constructor Null safety
- Map json_
Implementation
$FileLocation.fromJson(core.Map json_)
: this(
filePath: json_.containsKey('filePath')
? json_['filePath'] as core.String
: null,
);
$FileLocation.fromJson(core.Map json_)
: this(
filePath: json_.containsKey('filePath')
? json_['filePath'] as core.String
: null,
);