Amount constructor

Amount({
  1. required num value,
  2. Currency currency = Currency.KRW,
  3. String country = "KR",
})

Implementation

Amount({required this.value, this.currency = Currency.KRW, this.country = "KR"});