fromDartListAccessTokenSecretToGraphQLListAccessTokenSecret function

List<String> fromDartListAccessTokenSecretToGraphQLListAccessTokenSecret(
  1. List<AccessTokenSecret> v
)

Implementation

List<String> fromDartListAccessTokenSecretToGraphQLListAccessTokenSecret(
  List<AccessTokenSecret> v,
) =>
    v
        .map((e) => fromDartAccessTokenSecretToGraphQLAccessTokenSecret(e))
        .toList();