toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customers = this.customers;
final nextPageToken = this.nextPageToken;
final unreachable = this.unreachable;
return {
'customers': ?customers,
'nextPageToken': ?nextPageToken,
'unreachable': ?unreachable,
};
}