RoleView constructor

const RoleView({
  1. Key? key,
  2. required Map<String, Widget> widgetMap(),
  3. Widget defaultView()?,
  4. Widget loading()?,
})

Implementation

const RoleView(
    {Key? key, required this.widgetMap, this.defaultView, this.loading})
    : super(key: key);