EsigTextButton constructor

const EsigTextButton({
  1. Key? key,
  2. required Text texto,
  3. Color? corFundo,
  4. void onPressed()?,
})

Implementation

const EsigTextButton({
  Key? key,
  required this.texto,
  this.corFundo,
  this.onPressed,
}) : super(key: key);