WuiStaticField constructor

const WuiStaticField({
  1. Key? key,
  2. Widget? label,
  3. Widget? inputSuffix,
  4. Widget? inputPrefix,
  5. Widget? leading,
  6. Widget? trailing,
  7. Widget? value,
  8. void onTap()?,
})

Implementation

const WuiStaticField({
  Key? key ,
  this.label,
  this.inputSuffix,
  this.inputPrefix,
  this.leading,
  this.trailing,
  this.value,
  this.onTap
}) : super(key: key);