fromGraphQLListNullableChatMembersCursorToDartListNullableChatMembersCursor function

List<ChatMembersCursor>? fromGraphQLListNullableChatMembersCursorToDartListNullableChatMembersCursor(
  1. List<Object?>? v
)

Implementation

List<ChatMembersCursor>?
fromGraphQLListNullableChatMembersCursorToDartListNullableChatMembersCursor(
  List<Object?>? v,
) => v
    ?.map(
      (e) => fromGraphQLChatMembersCursorToDartChatMembersCursor(e as String),
    )
    .toList();