FloodlightConfigurationsListResponse.fromJson constructor
FloodlightConfigurationsListResponse.fromJson(
- Map json_
Implementation
FloodlightConfigurationsListResponse.fromJson(core.Map json_)
: this(
floodlightConfigurations:
(json_['floodlightConfigurations'] as core.List?)
?.map((value) => FloodlightConfiguration.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
kind: json_['kind'] as core.String?,
);