EsigContainerWidget constructor

const EsigContainerWidget({
  1. Key? key,
  2. void onTap()?,
  3. required Widget child,
  4. Color? corBorda = const Color(0xFFE4EDF5),
  5. Color? corFundo = Colors.transparent,
  6. EdgeInsets? padding = const EdgeInsets.symmetric(horizontal: 15, vertical: 9),
  7. EdgeInsets? margin = EdgeInsets.zero,
})

Implementation

const EsigContainerWidget({
  Key? key,
  this.onTap,
  required this.child,
  this.corBorda = const Color(0xFFE4EDF5),
  this.corFundo = Colors.transparent,
  this.padding = const EdgeInsets.symmetric(horizontal: 15, vertical: 9),
  this.margin = EdgeInsets.zero,
}) : super(key: key);