ClosingLabel.fromJson constructor
ClosingLabel.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- Object? json
)
Implementation
factory ClosingLabel.fromJson(
JsonDecoder jsonDecoder, String jsonPath, Object? json) {
json ??= {};
if (json is Map) {
int offset;
if (json.containsKey('offset')) {
offset = jsonDecoder.decodeInt('$jsonPath.offset', json['offset']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'offset');
}
int length;
if (json.containsKey('length')) {
length = jsonDecoder.decodeInt('$jsonPath.length', json['length']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'length');
}
String label;
if (json.containsKey('label')) {
label = jsonDecoder.decodeString('$jsonPath.label', json['label']);
} else {
throw jsonDecoder.mismatch(jsonPath, 'label');
}
return ClosingLabel(offset, length, label);
} else {
throw jsonDecoder.mismatch(jsonPath, 'ClosingLabel', json);
}
}