MEFailedDialog constructor

const MEFailedDialog({
  1. Key? key,
  2. Color backgroundColor = const Color(0xFFFFFFFF),
  3. Color backgroundOpacity = const Color(0xFF0D4491),
  4. Widget icon = const SizedBox(),
  5. String title = "",
  6. String subtitle = "",
})

Implementation

const MEFailedDialog({
  Key? key,
  this.backgroundColor = const Color(0xFFFFFFFF),
  this.backgroundOpacity = const Color(0xFF0D4491),
  this.icon = const SizedBox(),
  this.title = "",
  this.subtitle = "",
}) : super(key: key);