MedicationOrder.fromJsonString constructor

MedicationOrder.fromJsonString(
  1. String source
)

Acts like a constructor, returns a MedicationOrder, accepts a String as an argument, mostly because I got tired of typing it out

Implementation

factory MedicationOrder.fromJsonString(String source) {
  final dynamic json = jsonDecode(source);
  if (json is Map<String, dynamic>) {
    return _$MedicationOrderFromJson(json);
  } else {
    throw FormatException('FormatException:\nYou passed $json\n'
        'This does not properly decode to a Map<String,dynamic>.');
  }
}