BackendServicesScopedList.fromJson constructor
BackendServicesScopedList.fromJson(
- Map json_
Implementation
BackendServicesScopedList.fromJson(core.Map json_)
: this(
backendServices: json_.containsKey('backendServices')
? (json_['backendServices'] as core.List)
.map((value) => BackendService.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
warning: json_.containsKey('warning')
? BackendServicesScopedListWarning.fromJson(
json_['warning'] as core.Map<core.String, core.dynamic>)
: null,
);