1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
thesis_shop/lib/stores/cart_item_store.g.dart

25 lines
790 B

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'cart_item_store.dart';
// **************************************************************************
// StoreGenerator
// **************************************************************************
// ignore_for_file: non_constant_identifier_names, unnecessary_brace_in_string_interps, unnecessary_lambdas, prefer_expression_function_bodies, lines_longer_than_80_chars, avoid_as, avoid_annotating_with_dynamic
mixin _$CartItemStore on _CartItemStore, Store {
Computed<int>? _$quantityComputed;
@override
int get quantity => (_$quantityComputed ??=
Computed<int>(() => super.quantity, name: '_CartItemStore.quantity'))
.value;
@override
String toString() {
return '''
quantity: ${quantity}
''';
}
}