SignRequest constructor

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

Implementation

SignRequest({
  required this.code,
  this.data = const {},
  required this.sender,
  required this.networkId,
  required this.chainId,
  this.gasLimit = 2500,
  this.gasPrice = 1e-8,
  required this.signingPubKey,
  this.ttl = 600,
  this.caps = const <DappCapp>[],
});