CodeNestTextBtn constructor

const CodeNestTextBtn({
  1. Key? key,
  2. required String label,
  3. required VoidCallback? onPressed,
  4. bool isLoading = false,
  5. Color? foregroundColor,
  6. TextStyle? textStyle,
  7. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 24),
})

Implementation

const CodeNestTextBtn({
  super.key,
  required this.label,
  required this.onPressed,
  this.isLoading = false,
  this.foregroundColor,
  this.textStyle,
  this.padding = const EdgeInsets.symmetric(vertical: 14, horizontal: 24),
});