fromJson static method

InspectionLocation? fromJson(
  1. Map<String, dynamic> json
)
override

Implementation

static InspectionLocation? fromJson(Map<String, dynamic> json) {
  try {
    return _$InspectionLocationFromJson(json);
  } catch (e) {
    //debugPrint(e.toString());
  }
  return null;
}