SigningInput constructor
SigningInput({
- List<
int> ? privateKey, - String? chainId,
- Int64? gasPrice,
- Int64? gasLimit,
- GenericAction? genericAction,
- EGLDTransfer? egldTransfer,
- ESDTTransfer? esdtTransfer,
- ESDTNFTTransfer? esdtnftTransfer,
Implementation
factory SigningInput({
$core.List<$core.int>? privateKey,
$core.String? chainId,
$fixnum.Int64? gasPrice,
$fixnum.Int64? gasLimit,
GenericAction? genericAction,
EGLDTransfer? egldTransfer,
ESDTTransfer? esdtTransfer,
ESDTNFTTransfer? esdtnftTransfer,
}) {
final result = create();
if (privateKey != null) result.privateKey = privateKey;
if (chainId != null) result.chainId = chainId;
if (gasPrice != null) result.gasPrice = gasPrice;
if (gasLimit != null) result.gasLimit = gasLimit;
if (genericAction != null) result.genericAction = genericAction;
if (egldTransfer != null) result.egldTransfer = egldTransfer;
if (esdtTransfer != null) result.esdtTransfer = esdtTransfer;
if (esdtnftTransfer != null) result.esdtnftTransfer = esdtnftTransfer;
return result;
}