NomoInfoItem constructor

const NomoInfoItem({
  1. required String title,
  2. required String value,
  3. Key? key,
  4. TextStyle? titleStyle,
  5. TextStyle? valueStyle,
  6. EdgeInsets? padding,
})

Implementation

const NomoInfoItem({
  required this.title,
  required this.value,
  super.key,
  this.titleStyle,
  this.valueStyle,
  this.padding,
});