PollAirflowCommandRequest.fromJson constructor

PollAirflowCommandRequest.fromJson(
  1. Map json_
)

Implementation

PollAirflowCommandRequest.fromJson(core.Map json_)
    : this(
        executionId: json_['executionId'] as core.String?,
        nextLineNumber: json_['nextLineNumber'] as core.int?,
        pod: json_['pod'] as core.String?,
        podNamespace: json_['podNamespace'] as core.String?,
      );