GetSupply constructor

GetSupply({
  1. GetSupplyConfig? config,
})

Creates a codec for getSupply JSON RPC methods.

Implementation

GetSupply({
  final GetSupplyConfig? config,
}) : super(
        'getSupply',
        config: config ?? const GetSupplyConfig(),
      );