toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endpoints = this.endpoints;
  final languageCode = this.languageCode;
  final latestVerificationResult = this.latestVerificationResult;
  final username = this.username;
  return {
    'endpoints': ?endpoints,
    'languageCode': ?languageCode,
    'latestVerificationResult': ?latestVerificationResult,
    'username': ?username,
  };
}