BatchEnableServicesRequest.fromJson constructor
BatchEnableServicesRequest.fromJson(
- 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,
);