SigningOutput constructor

SigningOutput({
  1. List<int>? signedTransaction,
  2. SigningError? error,
  3. String? errorMessage,
  4. List<int>? hash,
})

Implementation

factory SigningOutput({
  $core.List<$core.int>? signedTransaction,
  $0.SigningError? error,
  $core.String? errorMessage,
  $core.List<$core.int>? hash,
}) {
  final result = create();
  if (signedTransaction != null) result.signedTransaction = signedTransaction;
  if (error != null) result.error = error;
  if (errorMessage != null) result.errorMessage = errorMessage;
  if (hash != null) result.hash = hash;
  return result;
}