fromGraphQLListAccessTokenSecretToDartListAccessTokenSecret function

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

Implementation

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