toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientId = this.clientId;
  final contexts = this.contexts;
  final suggestionCount = this.suggestionCount;
  return {
    'clientId': ?clientId,
    'contexts': ?contexts,
    'suggestionCount': ?suggestionCount,
  };
}