13 lines
232 B
Dart
13 lines
232 B
Dart
import 'package:pshared/models/payment/money.dart';
|
|
|
|
|
|
class NetworkFee {
|
|
final Money? networkFee;
|
|
final String? estimationContext;
|
|
|
|
const NetworkFee({
|
|
required this.networkFee,
|
|
required this.estimationContext,
|
|
});
|
|
}
|