CommandMetadata constructor
CommandMetadata({})
Implementation
CommandMetadata({
required this.chainId,
required this.sender,
int? gasLimit,
double? gasPrice,
int? ttl,
int? creationTime,
}) : gasLimit = gasLimit ?? 2500,
gasPrice = gasPrice ?? 0.00001,
ttl = ttl ?? 600,
creationTime = creationTime ?? Utils.getCreationTime();