UpdateTypeResponse.fromJson constructor
Implementation
factory UpdateTypeResponse.fromJson(Map<String, dynamic> json) {
return UpdateTypeResponse(
type: json['type'] != null
? Type.fromJson(json['type'] as Map<String, dynamic>)
: null,
);
}