LocationUsCore constructor

LocationUsCore({
  1. Meta? meta,
  2. Narrative? text,
  3. List<Identifier>? identifier,
  4. Code? status,
  5. required String name,
  6. List<ContactPoint>? telecom,
  7. Address? address,
  8. LocationPosition? position,
  9. String? description,
  10. Reference? managingOrganization,
})

Implementation

factory LocationUsCore({
  Meta? meta,
  Narrative? text,
  List<Identifier>? identifier,
  Code? status,
  required String name,
  List<ContactPoint>? telecom,
  Address? address,
  LocationPosition? position,
  String? description,
  Reference? managingOrganization,
}) =>
    LocationUsCore._(Location(
      meta: meta,
      text: text,
      identifier: identifier,
      status: status,
      name: name,
      telecom: telecom,
      address: address,
      position: position,
      description: description,
      managingOrganization: managingOrganization,
    ));