channels property

Future<Channels> channels

A channel resource contains information about a YouTube channel.

Implementation

Future<Channels> get channels async {
  if (_useToken) await _confirmToken();

  return Channels(token: _token, apiKey: _apiKey, dio: dio);
}