IdTypeButton constructor

const IdTypeButton({
  1. required String text,
  2. VoidCallback? onPressed,
  3. String? assetPath,
  4. Key? key,
})

Implementation

const IdTypeButton({
  required this.text,
  this.onPressed,
  this.assetPath,
  super.key,
});