mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
9 lines
202 B
Dart
9 lines
202 B
Dart
|
import 'package:flutter/foundation.dart';
|
||
|
|
||
|
class AnyPayTransaction {
|
||
|
const AnyPayTransaction(this.tx, {@required this.id, @required this.key});
|
||
|
|
||
|
final String tx;
|
||
|
final String id;
|
||
|
final String key;
|
||
|
}
|