getChannelOption method

Map<String, dynamic> getChannelOption(
  1. String channelId,
  2. String order
)

Implementation

Map<String, dynamic> getChannelOption(String channelId, String order) {
  Map<String, dynamic> options = {
    'channelId': channelId,
    "part": "snippet",
    'order': this.order,
    "maxResults": "${this.maxResults}",
    "key": "${this.key}",
  };
  return options;
}