abiJson property

  1. @TagNumber(2)
String get abiJson

A set of ABI parameters in JSON. Expected to be a JSON array at the entry level. Example:

[
    {
        "name": "_to',
        "type": "address"
    },
    {
        "name": "_value",
        "type": "uint256"
    }
]

Implementation

@$pb.TagNumber(2)
$core.String get abiJson => $_getSZ(1);
  1. @TagNumber(2)
set abiJson (String v)

Implementation

@$pb.TagNumber(2)
set abiJson($core.String v) {
  $_setString(1, v);
}