AcceleratorTypeOffering.fromJson constructor

AcceleratorTypeOffering.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AcceleratorTypeOffering.fromJson(Map<String, dynamic> json) {
  return AcceleratorTypeOffering(
    acceleratorType: json['acceleratorType'] as String?,
    location: json['location'] as String?,
    locationType: (json['locationType'] as String?)?.toLocationType(),
  );
}