Future<ChannelResponse>
list(- {String part = 'contentDetails,id,localizations,snippet,status,brandingSettings',
- List<String> partList = const [],
- String? categoryId,
- String? forUsername,
- String? id,
- bool? managedByMe,
- bool? mine,
- String? hl,
- int? maxResults,
- String? onBehalfOfContentOwner,
- String? pageToken}
)
Implementation
Future<ChannelResponse> list(
{String part =
'contentDetails,id,localizations,snippet,status,brandingSettings',
List<String> partList = const [],
String? categoryId,
String? forUsername,
String? id,
bool? managedByMe,
bool? mine,
String? hl,
int? maxResults,
String? onBehalfOfContentOwner,
String? pageToken}) async {
return _rest.list(_authHeader, apiKey, accept, buildParts(partList, part),
categoryId: categoryId,
forUsername: forUsername,
id: id,
managedByMe: managedByMe,
mine: mine,
hl: hl,
maxResults: maxResults,
onBehalfOfContentOwner: onBehalfOfContentOwner,
pageToken: pageToken);
}