LabelPullIndicator constructor

const LabelPullIndicator({
  1. required FutureOr<void> onPull(),
  2. required String label,
  3. TextStyle labelStyle = const TextStyle(),
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
})

Implementation

const LabelPullIndicator({
  required this.onPull,
  required this.label,
  this.labelStyle = const TextStyle(),
  this.mainAxisAlignment = MainAxisAlignment.center,
});