CborDecimalFraction constructor

CborDecimalFraction({
  1. required CborInt exponent,
  2. required CborInt mantissa,
  3. List<int> tags,
  4. CborLengthType type,
})

Implementation

factory CborDecimalFraction({
  required CborInt exponent,
  required CborInt mantissa,
  List<int> tags,
  CborLengthType type,
}) = _CborDecimalFractionImpl;