GNStudentServiceCard constructor

GNStudentServiceCard({
  1. required String title,
  2. required String status,
  3. required String downloadLink,
  4. String? payLink,
  5. required String date,
  6. String? requestNo,
  7. required List<Widget> content,
  8. required VoidCallback onEdit,
  9. required VoidCallback onCancel,
  10. required VoidCallback onInfoButtonClick,
  11. required bool isDownload,
  12. required bool isEdit,
  13. required bool isCancel,
  14. required bool isInfoButton,
  15. bool isPayButton = false,
  16. bool enabled = true,
  17. String? subtitle,
  18. bool isShowDate = true,
})

Implementation

GNStudentServiceCard(
    {required this.title,
    required this.status,
    required this.downloadLink,
    this.payLink,
    required this.date,
    this.requestNo,
    required this.content,
    required this.onEdit,
    required this.onCancel,
    required this.onInfoButtonClick,
    required this.isDownload,
    required this.isEdit,
    required this.isCancel,
    required this.isInfoButton,
    this.isPayButton = false,
    this.enabled = true,
    this.subtitle,
    this.isShowDate = true});