IngressTo.fromJson constructor
IngressTo.fromJson(
- Map json_
Implementation
IngressTo.fromJson(core.Map json_)
: this(
operations: (json_['operations'] as core.List?)
?.map((value) => ApiOperation.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
resources: (json_['resources'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);