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