fromGraphQLListAccessTokenSecretNullableToDartListAccessTokenSecretNullable function

List<AccessTokenSecret?> fromGraphQLListAccessTokenSecretNullableToDartListAccessTokenSecretNullable(
  1. List<Object?> v
)

Implementation

List<AccessTokenSecret?>
fromGraphQLListAccessTokenSecretNullableToDartListAccessTokenSecretNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLAccessTokenSecretNullableToDartAccessTokenSecretNullable(
            e as String?,
          ),
    )
    .toList();