contractObjectFromJson function

ContractObject contractObjectFromJson(
  1. String str
)

makes a ContractObject from a string of json

Implementation

ContractObject contractObjectFromJson(String str) =>
    ContractObject.fromJson(json.decode(str));