fromGraphQLListNullableIncomingChatCallsCursorToDartListNullableIncomingChatCallsCursor function

List<IncomingChatCallsCursor>? fromGraphQLListNullableIncomingChatCallsCursorToDartListNullableIncomingChatCallsCursor(
  1. List<Object?>? v
)

Implementation

List<IncomingChatCallsCursor>?
fromGraphQLListNullableIncomingChatCallsCursorToDartListNullableIncomingChatCallsCursor(
  List<Object?>? v,
) => v
    ?.map(
      (e) => fromGraphQLIncomingChatCallsCursorToDartIncomingChatCallsCursor(
        e as String,
      ),
    )
    .toList();