EsigContainerWidget constructor

const EsigContainerWidget({
  1. Key? key,
  2. void onTap()?,
  3. required Widget child,
  4. Color? corBorda,
  5. Color? corFundo = Colors.transparent,
  6. EdgeInsets? padding,
  7. EdgeInsets? margin,
})

Implementation

const EsigContainerWidget({
  Key? key,
  this.onTap,
  required this.child,
  this.corBorda,
  this.corFundo = Colors.transparent,
  this.padding,
  this.margin,
}) : super(key: key);