toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final emailAddress = this.emailAddress;
  final historyId = this.historyId;
  final messagesTotal = this.messagesTotal;
  final threadsTotal = this.threadsTotal;
  return {
    'emailAddress': ?emailAddress,
    'historyId': ?historyId,
    'messagesTotal': ?messagesTotal,
    'threadsTotal': ?threadsTotal,
  };
}