MoveFileOptions.fromJson constructor
MoveFileOptions.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json
)
Implementation
factory MoveFileOptions.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
json ??= {};
if (json is Map) {
String newFile;
if (json.containsKey('newFile')) {
newFile =
jsonDecoder.decodeString('$jsonPath.newFile', json['newFile']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'newFile');
}
return MoveFileOptions(newFile);
} else {
throw jsonDecoder.mismatch(jsonPath, 'moveFile options', json);
}
}