toMetaJson method
Serializes metadata fields (id, uuid, timestamps).
Used internally by backends.
Implementation
@override
Map<String, dynamic> toMetaJson() {
return {
"id": id,
"uuid": uuid,
'email': email,
'token': token,
"created_at": createdAt?.toIso8601String(),
"updated_at": updatedAt?.toIso8601String(),
};
}