PlainRow constructor

const PlainRow({
  1. Key? key,
  2. required String title,
  3. required String? value,
  4. bool copyEnabled = false,
})

Implementation

const PlainRow({
  super.key,
  required this.title,
  required this.value,
  this.copyEnabled = false,
});