IExtraInfo constructor

IExtraInfo({
  1. required String title,
  2. required String subtitle,
  3. required bool success,
  4. required double pourcent,
  5. required String status,
})

Implementation

IExtraInfo({
  required this.title,
  required this.subtitle,
  required this.success,
  required this.pourcent,
  required this.status,
});