BigQueryModelTraining.fromJson constructor

BigQueryModelTraining.fromJson(
  1. Map json_
)

Implementation

BigQueryModelTraining.fromJson(core.Map json_)
    : this(
        currentIteration: json_.containsKey('currentIteration')
            ? json_['currentIteration'] as core.int
            : null,
        expectedTotalIterations: json_.containsKey('expectedTotalIterations')
            ? json_['expectedTotalIterations'] as core.String
            : null,
      );