toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
    "email": email == null ? null : email,
    "user_id": userId == null ? null : userId,
    "name": name == null ? null : name,
    "logo": logo == null ? null : logo,
    "website": website== null? null : website,
    "access": access == null ? null : access,
    "text": text == null ? null : text,
    "created_at": createdAt == null ? null : createdAt!.toIso8601String(),
};