list method Null safety
Lists live chat messages for a specific chat.
Implementation
Future<LiveChatMessageListResponse> list(
{required String liveChatId,
String part = 'snippet,status,contentDetails',
List<String> partList = const [],
String? hl,
int? maxResults,
String? pageToken,
int? profileImageSize}) async {
final String part = 'snippet,authorDetails';
return await _rest.list(
_authHeader, accept, buildParts(partList, part), liveChatId,
hl: hl,
maxResults: maxResults,
pageToken: pageToken,
profileImageSize: profileImageSize);
}