InfoRow constructor

const InfoRow({
  1. Key? key,
  2. required String title,
  3. required String info,
  4. double topPadding = 15,
  5. double latPadding = 20,
  6. bool isCopyable = false,
})

Implementation

const InfoRow({
  super.key,
  required this.title,
  required this.info,
  this.topPadding = 15,
  this.latPadding = 20,
  this.isCopyable = false,
});