toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final email = this.email;
  final kind = this.kind;
  final newEmail = this.newEmail;
  final requestType = this.requestType;
  return {
    'email': ?email,
    'kind': ?kind,
    'newEmail': ?newEmail,
    'requestType': ?requestType,
  };
}