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