RuntimeUpdatableParams.fromJson constructor

RuntimeUpdatableParams.fromJson(
  1. Map json_
)

Implementation

RuntimeUpdatableParams.fromJson(core.Map json_)
    : this(
        maxNumWorkers: json_.containsKey('maxNumWorkers')
            ? json_['maxNumWorkers'] as core.int
            : null,
        minNumWorkers: json_.containsKey('minNumWorkers')
            ? json_['minNumWorkers'] as core.int
            : null,
      );