TextIconButton constructor
const
TextIconButton({
- Key? key,
- required Text title,
- required Widget icon,
- required void onTap(),
- bool ltr = true,
- BoxConstraints? constraints,
- BoxDecoration? decoration,
- double? space,
Implementation
const TextIconButton({
Key? key,
required this.title,
required this.icon,
required this.onTap,
this.ltr = true,
this.constraints,
this.decoration,
this.space,
}) : super(key: key);