DIPlugin constructor

DIPlugin({
  1. required String name,
  2. required String title,
})

The DIPlugin constructor accepts two required parameters: name and title.

Implementation

DIPlugin({required super.name, required super.title})
    : super(pluginType: PluginType.di);