FhirRequest.fromJsonString constructor
FhirRequest.fromJsonString(
- String source
Acts like a constructor, returns a FhirRequest, accepts a String as an argument, mostly because I got tired of typing it out
Implementation
factory FhirRequest.fromJsonString(String source) {
final dynamic json = jsonDecode(source);
if (json is Map<String, dynamic>) {
return _$FhirRequestFromJson(json);
} else {
throw FormatException('FormatException:\nYou passed $json\n'
'This does not properly decode to a Map<String,dynamic>.');
}
}