SigningInput constructor
SigningInput({})
Implementation
factory SigningInput({
$core.List<$core.int>? privateKey,
$core.String? destination,
$fixnum.Int64? value,
$fixnum.Int64? fee,
$core.int? validityStartHeight,
NetworkId? networkId,
}) {
final result = create();
if (privateKey != null) result.privateKey = privateKey;
if (destination != null) result.destination = destination;
if (value != null) result.value = value;
if (fee != null) result.fee = fee;
if (validityStartHeight != null)
result.validityStartHeight = validityStartHeight;
if (networkId != null) result.networkId = networkId;
return result;
}