new project stable version

This commit is contained in:
2026-05-10 19:11:31 +03:00
commit 3616f84556
391 changed files with 23857 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import 'package:be_happy/domain/entities/payment_card.dart';
sealed class TariffSheetEvent {}
class TariffSheetStarted extends TariffSheetEvent {
final int scooterId;
TariffSheetStarted(this.scooterId);
}
class PaymentCardChanged extends TariffSheetEvent {
final PaymentCard card;
PaymentCardChanged(this.card);
}
class SelectBalancePressed extends TariffSheetEvent {}
class BookScooterPressed extends TariffSheetEvent {
final int scooterId;
final int planId;
final int? subscriptionId;
final int? cardId;
final bool isBalance;
final bool isInsurance;
BookScooterPressed(this.scooterId, this.planId, this.subscriptionId,
this.cardId, this.isBalance, this.isInsurance);
}