toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'username'] = this.username;
json[r'method'] = this.method;
json[r'password'] = this.password;
json[r'phoneLoginMethod'] = this.phoneLoginMethod;
json[r'sms_verification_code'] = this.smsVerificationCode;
return json;
}