AbiContract constructor

AbiContract({
  1. required String name,
  2. required String description,
  3. required Map<String, NetworkInfo> networks,
  4. required List<AbiMethod> methods,
})

Implementation

AbiContract({
  required this.name,
  required this.description,
  required this.networks,
  required this.methods,
});