getUncheckedSigner method

JsonRpcSigner getUncheckedSigner({
  1. String? address,
  2. int? index,
})

Implementation

JsonRpcSigner getUncheckedSigner({
  String? address,
  int? index,
}) {
  return JsonRpcSigner(
    childProvider: this,
    address: address,
    index: index,
  );
}