CreateThingTypeResponse.fromJson constructor

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

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?,
  );
}