CreateThingResponse.fromJson constructor

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

Implementation

factory CreateThingResponse.fromJson(Map<String, dynamic> json) {
  return CreateThingResponse(
    thingArn: json['thingArn'] as String?,
    thingId: json['thingId'] as String?,
    thingName: json['thingName'] as String?,
  );
}