AutoFillRequest.fromJson constructor

AutoFillRequest.fromJson(
  1. Map json_
)

Implementation

AutoFillRequest.fromJson(core.Map json_)
  : this(
      range:
          json_.containsKey('range')
              ? GridRange.fromJson(
                json_['range'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      sourceAndDestination:
          json_.containsKey('sourceAndDestination')
              ? SourceAndDestination.fromJson(
                json_['sourceAndDestination']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      useAlternateSeries: json_['useAlternateSeries'] as core.bool?,
    );