GabiText constructor

GabiText({
  1. Key? key,
  2. String sTexto = "HOLA :)",
  3. required dynamic onShortClick(
    1. int Index
    ),
  4. required int index,
})

Implementation

GabiText(
    {Key? key,
      this.sTexto = "HOLA :)",
      required this.onShortClick,
      required this.index})
    : super(key: key);