Panel constructor

Panel({
  1. Key? key,
  2. required String title,
  3. String? desc,
  4. String? status,
  5. Widget? body,
  6. Widget? footer,
})

Implementation

Panel(
    {Key? key,
    required this.title,
    this.desc,
    this.status,
    this.body,
    this.footer})
    : super(key: key);