USD constructor

USD({
  1. int? cents,
  2. int? dollars,
  3. int? tenthFractionsOfACent,
})

Implementation

USD({
  this.cents,
  this.dollars,
  this.tenthFractionsOfACent,
});