$Money constructor

$Money({
  1. String? currencyCode,
  2. int? nanos,
  3. String? units,
})

Implementation

$Money({
  this.currencyCode,
  this.nanos,
  this.units,
});