listFromJson static method
Implementation
static List<FacilityInfo> listFromJson(dynamic json, {bool emptyIsNull, bool growable,}) =>
json is List && json.isNotEmpty
? json.map(FacilityInfo.fromJson).toList(growable: true == growable)
: true == emptyIsNull ? null : <FacilityInfo>[];