ReturnValue constructor

ReturnValue({
  1. required String transactionId,
  2. required Uint8List? rawValue,
  3. required Object? value,
  4. required AbiMethod? method,
  5. required Object? parseError,
  6. required PendingTransaction? txInfo,
})

Implementation

ReturnValue({
  required this.transactionId,
  required this.rawValue,
  required this.value,
  required this.method,
  required this.parseError,
  required this.txInfo,
});