toMap method
Convert to Map
Implementation
Map<String, dynamic> toMap() {
final map = <String, dynamic>{};
if (id != null) map['id'] = id;
if (email != null) map['email'] = email;
if (fullName != null) map['full_name'] = fullName;
if (organization != null) map['organization'] = organization;
if (data != null) map['data'] = data;
return map;
}