toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      "resourceType": resourceType,
      "meta": meta.toJson(),
      "status": status,
      "authored": authored.toIso8601String(),
      "item": List<dynamic>.from(item.map((x) => x.toJson())),
    };