CreateThingTypeResponse.fromJson constructor
Implementation
factory CreateThingTypeResponse.fromJson(Map<String, dynamic> json) {
return CreateThingTypeResponse(
thingTypeArn: json['thingTypeArn'] as String?,
thingTypeId: json['thingTypeId'] as String?,
thingTypeName: json['thingTypeName'] as String?,
);
}