GetBlockProduction constructor

GetBlockProduction({
  1. GetBlockProductionConfig? config,
})

Creates a codec for getBlockProduction JSON RPC methods.

Implementation

GetBlockProduction({
  final GetBlockProductionConfig? config,
}): super(
  'getBlockProduction',
  config: config ?? const GetBlockProductionConfig(),
);