toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  map['userId'] = userId;
  map['thumbnail'] = thumbnail;
  map['displayName'] = displayName;
  map['createdAt'] = createdAt;
  return map;
}