toJson method

  1. @override
Map<String, dynamic> toJson()
override

Convert the SmartContractABI object to a JSON representation.

Implementation

@override
Map<String, dynamic> toJson() {
  return {"entrys": entrys.map((e) => e.toJson()).toList()};
}