Contract.fromSigner constructor

Contract.fromSigner(
  1. String address,
  2. dynamic abi,
  3. Signer<_SignerImpl> signer
)

Instantiate Contract from provider for read-write contract calls.

Implementation

factory Contract.fromSigner(String address, dynamic abi, Signer signer) =>
    Contract._(_ContractImpl(address, abi, signer.impl));