BlocRelatedClassNamingConfig constructor

const BlocRelatedClassNamingConfig({
  1. String stateSuffix = 'State',
  2. String eventSuffix = 'Event',
  3. String presentationEventSuffix = 'PresentationEvent',
})

Implementation

const BlocRelatedClassNamingConfig({
  this.stateSuffix = 'State',
  this.eventSuffix = 'Event',
  this.presentationEventSuffix = 'PresentationEvent',
});