StateMachineListItem.fromJson constructor

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

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