UIKeyValueThemeData.config constructor

const UIKeyValueThemeData.config({
  1. double? fullSpacing = 4,
  2. double? compactSpacing = 4,
  3. TextStyle? compactTitleStyle = const TextStyle(fontSize: 14),
  4. TextStyle? compactTextStyle = const TextStyle(fontSize: 16),
  5. TextStyle? fullTitleStyle = const TextStyle(fontSize: 12),
  6. TextStyle? fullTextStyle = const TextStyle(fontSize: 12),
})

Implementation

const UIKeyValueThemeData.config({
  this.fullSpacing = 4,
  this.compactSpacing = 4,
  this.compactTitleStyle = const TextStyle(fontSize: 14),
  this.compactTextStyle = const TextStyle(fontSize: 16),
  this.fullTitleStyle = const TextStyle(fontSize: 12),
  this.fullTextStyle = const TextStyle(fontSize: 12),
});