BindingStyle constructor

const BindingStyle({
  1. String? label,
  2. String? hint,
  3. String? helper,
  4. Widget? prefix,
  5. Widget? suffix,
  6. List<BindingStyleExtension> extensions = const [],
})

Implementation

const BindingStyle({
  this.label,
  this.hint,
  this.helper,
  this.prefix,
  this.suffix,
  this.extensions = const [],
});