EthereumRequestCall.fromRaw constructor

EthereumRequestCall.fromRaw({
  1. required String contractAddress,
  2. required String raw,
  3. String? from,
  4. BlockTagOrNumber? blockNumber = BlockTagOrNumber.latest,
})

Implementation

factory EthereumRequestCall.fromRaw(
    {required String contractAddress,
    required String raw,
    String? from,
    BlockTagOrNumber? blockNumber = BlockTagOrNumber.latest}) {
  return EthereumRequestCall._(contractAddress, raw, from, null, blockNumber);
}