RuntimeUpdatableParams.fromJson constructor
RuntimeUpdatableParams.fromJson(
- 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,
);