ArcaneSettingsInfoRow constructor

const ArcaneSettingsInfoRow({
  1. Key? key,
  2. required String label,
  3. required String value,
  4. bool monospace = false,
})

Implementation

const ArcaneSettingsInfoRow({
  super.key,
  required this.label,
  required this.value,
  this.monospace = false,
});