toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'id'] = this.id;
json[r'userId'] = this.userId;
json[r'phoneCountry'] = this.phoneCountry;
json[r'createdAt'] = this.createdAt.toUtc().toIso8601String();
return json;
}