toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.id != null) {
json[r'id'] = this.id;
} else {
json[r'id'] = null;
}
json[r'object'] = this.object;
json[r'web3_wallet'] = this.web3Wallet;
if (this.verification != null) {
json[r'verification'] = this.verification;
} else {
json[r'verification'] = null;
}
json[r'created_at'] = this.createdAt;
json[r'updated_at'] = this.updatedAt;
return json;
}