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