fromGraphQLListChatContactsCursorToDartListChatContactsCursor function

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

Implementation

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