UICurrentReadingRow constructor

const UICurrentReadingRow({
  1. Key? key,
  2. required Widget icon,
  3. required String value,
  4. Color? accentColor,
  5. double iconSize = 44,
})

Creates a UICurrentReadingRow.

Implementation

const UICurrentReadingRow({
  super.key,
  required this.icon,
  required this.value,
  this.accentColor,
  this.iconSize = 44,
});