TKeyValue constructor

TKeyValue(
  1. String key, {
  2. String? value,
  3. Widget? widget,
  4. double? width,
  5. Alignment? alignment,
  6. double? minWidth,
  7. double? maxWidth,
})

Creates a key-value item.

Implementation

TKeyValue(
  this.key, {
  this.value,
  this.widget,
  this.width,
  this.alignment,
  this.minWidth,
  this.maxWidth,
});