StopAirflowCommandResponse.fromJson constructor
StopAirflowCommandResponse.fromJson(
- Map json_
Implementation
StopAirflowCommandResponse.fromJson(core.Map json_)
: this(
isDone: json_['isDone'] as core.bool?,
output:
(json_['output'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);