CreateDynamicThingGroupResponse.fromJson constructor

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

Implementation

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