Overrides.fromJson constructor
Overrides.fromJson(
- Map json_
Implementation
Overrides.fromJson(core.Map json_)
: this(
containerOverrides:
(json_['containerOverrides'] as core.List?)
?.map(
(value) => ContainerOverride.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
taskCount: json_['taskCount'] as core.int?,
timeoutSeconds: json_['timeoutSeconds'] as core.int?,
);