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