toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (feedId != null) {
    _json[r'FeedId'] = feedId;
  } else {
    _json[r'FeedId'] = null;
  }
    _json[r'Name'] = name;
  return _json;
}