ComposedActionText constructor

const ComposedActionText({
  1. Key? key,
  2. required Function onAction,
  3. bool uppercaseAction = true,
  4. required String normalText,
  5. TextStyle? normalStyle,
  6. required String actionText,
  7. TextStyle? actionStyle,
  8. bool disabled = false,
  9. bool busy = false,
  10. TextAlign textAlign = TextAlign.start,
})

Implementation

const ComposedActionText({
  Key? key,
  required this.onAction,
  this.uppercaseAction = true,
  required this.normalText,
  this.normalStyle,
  required this.actionText,
  this.actionStyle,
  this.disabled = false,
  this.busy = false,
  this.textAlign = TextAlign.start,
}) : super(key: key);