UiConfig constructor

UiConfig({
  1. bool hasListScreen = true,
  2. bool hasDetailScreen = false,
  3. bool hasFormScreen = false,
  4. List<String> customWidgets = const [],
})

Implementation

UiConfig({
  this.hasListScreen = true,
  this.hasDetailScreen = false,
  this.hasFormScreen = false,
  this.customWidgets = const [],
});