CustomProvider constructor

CustomProvider({
  1. required String providerName,
  2. void onInitialize()?,
  3. void onPageView(
    1. String path,
    2. String? title,
    3. Map<String, dynamic>? params
    )?,
  4. void onEvent(
    1. String name,
    2. Map<String, dynamic>? params
    )?,
  5. void onDispose()?,
})

Implementation

CustomProvider({
  required this.providerName,
  this.onInitialize,
  this.onPageView,
  this.onEvent,
  this.onDispose,
});