fromGraphQLListChatItemIdToDartListChatItemId function

List<ChatItemId> fromGraphQLListChatItemIdToDartListChatItemId(
  1. List<Object?> v
)

Implementation

List<ChatItemId> fromGraphQLListChatItemIdToDartListChatItemId(
  List<Object?> v,
) => v.map((e) => fromGraphQLChatItemIdToDartChatItemId(e as String)).toList();