FormattedValue constructor

const FormattedValue({
  1. required KeyFormat format,
  2. required Object value,
  3. String? pemLabel,
})

Implementation

const FormattedValue({
  required this.format,
  required this.value,
  this.pemLabel,
});