ListLocationsRequest.fromJson constructor
Implementation
factory ListLocationsRequest.fromJson(Map<String, dynamic> json) {
return ListLocationsRequest(
name: json['name'] ?? '',
filter: json['filter'] ?? '',
pageSize: json['pageSize'] ?? 0,
pageToken: json['pageToken'] ?? '',
);
}