mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
f2b8dd21a1
* Redesign receive amount field * Fix issues with animations * Fix issues with animations * Fix max fraction digit to 8 * add another 0 * Update amount when currency is changed --------- Co-authored-by: Justin Ehrenhofer <justin.ehrenhofer@gmail.com> Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
11 lines
No EOL
172 B
Dart
11 lines
No EOL
172 B
Dart
class QrViewData {
|
|
final int? version;
|
|
final String? heroTag;
|
|
final String data;
|
|
|
|
QrViewData({
|
|
this.version,
|
|
this.heroTag,
|
|
required this.data,
|
|
});
|
|
} |