BatchEnableServicesRequest.fromJson constructor

BatchEnableServicesRequest.fromJson(
  1. Map json_
)

Implementation

BatchEnableServicesRequest.fromJson(core.Map json_)
    : this(
        serviceIds: json_.containsKey('serviceIds')
            ? (json_['serviceIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );