channelUri method

Uri channelUri(
  1. String channelId,
  2. String? order
)

Implementation

Uri channelUri(String channelId, String? order) {
  this.order = order ?? 'date';
  this.channelId = channelId;
  final options = getChannelOption(channelId, this.order!);
  Uri url = new Uri.https(baseURL, "youtube/v3/search", options);
  return url;
}