fromGraphQLListNullableChatContactsCursorToDartListNullableChatContactsCursor function

List<ChatContactsCursor>? fromGraphQLListNullableChatContactsCursorToDartListNullableChatContactsCursor(
  1. List<Object?>? v
)

Implementation

List<ChatContactsCursor>?
fromGraphQLListNullableChatContactsCursorToDartListNullableChatContactsCursor(
  List<Object?>? v,
) => v
    ?.map(
      (e) => fromGraphQLChatContactsCursorToDartChatContactsCursor(e as String),
    )
    .toList();