StateMachineListItem.fromJson constructor
Implementation
factory StateMachineListItem.fromJson(Map<String, dynamic> json) {
return StateMachineListItem(
creationDate:
nonNullableTimeStampFromJson(json['creationDate'] as Object),
name: json['name'] as String,
stateMachineArn: json['stateMachineArn'] as String,
type: (json['type'] as String).toStateMachineType(),
);
}