BackendServicesScopedList.fromJson constructor

BackendServicesScopedList.fromJson(
  1. Map json_
)

Implementation

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