ComputeTimeCursorRequest.fromJson constructor

ComputeTimeCursorRequest.fromJson(
  1. Map json_
)

Implementation

ComputeTimeCursorRequest.fromJson(core.Map json_)
  : this(
      partition: json_['partition'] as core.String?,
      target:
          json_.containsKey('target')
              ? TimeTarget.fromJson(
                json_['target'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );