fromGraphQLListNullableOperationIdToDartListNullableOperationId function

List<OperationId>? fromGraphQLListNullableOperationIdToDartListNullableOperationId(
  1. List<Object?>? v
)

Implementation

List<OperationId>?
fromGraphQLListNullableOperationIdToDartListNullableOperationId(
  List<Object?>? v,
) => v
    ?.map((e) => fromGraphQLOperationIdToDartOperationId(e as String))
    .toList();