fromDartListAccessTokenSecretNullableToGraphQLListAccessTokenSecretNullable function
Implementation
List<String?>
fromDartListAccessTokenSecretNullableToGraphQLListAccessTokenSecretNullable(
List<AccessTokenSecret?> v,
) =>
v
.map(
(e) =>
fromDartAccessTokenSecretNullableToGraphQLAccessTokenSecretNullable(
e,
),
)
.toList();