GNBusPass constructor

const GNBusPass({
  1. Key? key,
  2. required String imageUrl,
  3. required String registrationStatusName,
  4. required String busPassNo,
  5. required String fullName,
  6. required String registrationNo,
  7. required String boardingPointName,
  8. required String routeName,
  9. required String transportDate,
  10. required String cityName,
  11. required bool showDateTime,
  12. required bool isFeeDetail,
  13. String? feesAmount,
  14. String? feesPaidAmount,
  15. String? feesOutstandingAmount,
  16. bool? isCity = false,
})

Implementation

const GNBusPass({
  super.key,
  required this.imageUrl,
  required this.registrationStatusName,
  required this.busPassNo,
  required this.fullName,
  required this.registrationNo,
  required this.boardingPointName,
  required this.routeName,
  required this.transportDate,
  required this.cityName,
  required this.showDateTime,
  required this.isFeeDetail,
  this.feesAmount,
  this.feesPaidAmount,
  this.feesOutstandingAmount,
  this.isCity = false,
});