mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
13 lines
411 B
Dart
13 lines
411 B
Dart
|
import 'package:intl/intl.dart';
|
||
|
|
||
|
const moneroAmountLength = 12;
|
||
|
const moneroAmountDivider = 1000000000000;
|
||
|
final moneroAmountFormat = NumberFormat()
|
||
|
..maximumFractionDigits = moneroAmountLength
|
||
|
..minimumFractionDigits = 1;
|
||
|
|
||
|
String moneroAmountToString({int amount}) =>
|
||
|
moneroAmountFormat.format(amount / moneroAmountDivider);
|
||
|
|
||
|
double moneroAmountToDouble({int amount}) => amount / moneroAmountDivider;
|