CutoverForecast.fromJson constructor

CutoverForecast.fromJson(
  1. Map json_
)

Implementation

CutoverForecast.fromJson(core.Map json_)
    : this(
        estimatedCutoverJobDuration:
            json_.containsKey('estimatedCutoverJobDuration')
                ? json_['estimatedCutoverJobDuration'] as core.String
                : null,
      );