JsonRpcSigner constructor

JsonRpcSigner({
  1. required JsonRpcProvider childProvider,
  2. String? address,
  3. int? index = 0,
})

Implementation

JsonRpcSigner({
  required this.childProvider,
  this.address,
  this.index = 0,
}) {
  provider = childProvider;
}