fromGraphQLListOperationDepositSecretNullableToDartListOperationDepositSecretNullable function

List<OperationDepositSecret?> fromGraphQLListOperationDepositSecretNullableToDartListOperationDepositSecretNullable(
  1. List<Object?> v
)

Implementation

List<OperationDepositSecret?>
fromGraphQLListOperationDepositSecretNullableToDartListOperationDepositSecretNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLOperationDepositSecretNullableToDartOperationDepositSecretNullable(
            e as String?,
          ),
    )
    .toList();