GTFDialogContainer constructor

const GTFDialogContainer({
  1. Key? key,
  2. double? width = 310,
  3. double radius = 4,
  4. Color? color = GTFColor.white,
  5. Widget? widget,
})

Implementation

const GTFDialogContainer({
  Key? key,
  this.width = 310,
  this.radius = 4,
  this.color = GTFColor.white,
  this.widget,
}) : super(key: key);