fromGraphQLListNullableSessionIdNullableToDartListNullableSessionIdNullable function

List<SessionId?>? fromGraphQLListNullableSessionIdNullableToDartListNullableSessionIdNullable(
  1. List<Object?>? v
)

Implementation

List<SessionId?>?
fromGraphQLListNullableSessionIdNullableToDartListNullableSessionIdNullable(
  List<Object?>? v,
) => v
    ?.map(
      (e) => fromGraphQLSessionIdNullableToDartSessionIdNullable(e as String?),
    )
    .toList();