StopAirflowCommandResponse.fromJson constructor

StopAirflowCommandResponse.fromJson(
  1. Map json_
)

Implementation

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