SignRequest constructor

SignRequest({
  1. required String? code,
  2. Map<String, dynamic>? data,
  3. required String sender,
  4. required String networkId,
  5. required String chainId,
  6. int? gasLimit,
  7. double? gasPrice,
  8. String? signingPubKey,
  9. int? ttl,
  10. List<DappCapp>? caps,
})

Implementation

SignRequest({
  required this.code,
  this.data,
  required this.sender,
  required this.networkId,
  required this.chainId,
  this.gasLimit,
  this.gasPrice,
  this.signingPubKey,
  this.ttl,
  this.caps,
})  : pactCode = code,
      envData = data;