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