IngressFrom.fromJson constructor
IngressFrom.fromJson(
- Map json_
Implementation
IngressFrom.fromJson(core.Map json_)
: this(
identities: (json_['identities'] as core.List?)
?.map((value) => value as core.String)
.toList(),
identityType: json_['identityType'] as core.String?,
sources: (json_['sources'] as core.List?)
?.map((value) => IngressSource.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);