CreateThingGroupResponse.fromJson constructor

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

Implementation

factory CreateThingGroupResponse.fromJson(Map<String, dynamic> json) {
  return CreateThingGroupResponse(
    thingGroupArn: json['thingGroupArn'] as String?,
    thingGroupId: json['thingGroupId'] as String?,
    thingGroupName: json['thingGroupName'] as String?,
  );
}