toJson method
Implementation
Map<String, dynamic> toJson() {
final _resultData = <String, dynamic>{};
final l$id = id;
_resultData['id'] = l$id;
final l$name = name;
_resultData['name'] = l$name;
final l$title = title;
_resultData['title'] = l$title;
final l$email = email;
_resultData['email'] = l$email?.map((e) => e).toList();
final l$phone = phone;
_resultData['phone'] = l$phone?.map((e) => e).toList();
final l$website = website;
_resultData['website'] = l$website;
final l$subtitle = subtitle;
_resultData['subtitle'] = l$subtitle;
final l$createdAt = createdAt;
_resultData['createdAt'] = dateTimeToJson(l$createdAt);
final l$updatedAt = updatedAt;
_resultData['updatedAt'] = dateTimeToJson(l$updatedAt);
final l$brandColor = brandColor;
_resultData['brandColor'] = l$brandColor;
final l$description = description;
_resultData['description'] = l$description;
final l$company = company;
_resultData['company'] = l$company?.toJson();
final l$picture = picture;
_resultData['picture'] = l$picture?.toJson();
return _resultData;
}