amountInMajorUnit property
double?
get
amountInMajorUnit
The amount in the major currency unit (e.g. GHS, NGN).
Implementation
double? get amountInMajorUnit => amount != null ? amount! / 100.0 : null;
The amount in the major currency unit (e.g. GHS, NGN).
double? get amountInMajorUnit => amount != null ? amount! / 100.0 : null;