WriteContractParameters.legacy constructor

const WriteContractParameters.legacy({
  1. required List<Map> abi,
  2. required String address,
  3. required String functionName,
  4. List<Map<String, dynamic>>? accessList,
  5. String? account,
  6. List? args,
  7. int? chainId,
  8. String? dataSuffix,
  9. BigInt? gas,
  10. FeeValuesLegacy? feeValues,
  11. BigInt? nonce,
  12. BigInt? value,
  13. String? type,
})

Implementation

const factory WriteContractParameters.legacy({
  required List<Map> abi,
  required String address,
  required String functionName,
  List<Map<String, dynamic>>? accessList,
  String? account,
  List<dynamic>? args,
  int? chainId,
  String? dataSuffix,
  BigInt? gas,
  FeeValuesLegacy? feeValues,
  BigInt? nonce,
  BigInt? value,
  String? type,
}) = WriteContractParametersLegacy;