TalkerView constructor

const TalkerView({
  1. Key? key,
  2. required Talker talker,
  3. TalkerViewController? controller,
  4. ScrollController? scrollController,
  5. TalkerScreenTheme theme = const TalkerScreenTheme(),
  6. String? appBarTitle,
  7. TalkerDataBuilder? itemsBuilder,
  8. Widget? appBarLeading,
  9. List<CustomSettingsGroup> customSettings = const [],
  10. bool isLogsExpanded = true,
  11. bool isLogOrderReversed = true,
})

Implementation

const TalkerView({
  Key? key,
  required this.talker,
  this.controller,
  this.scrollController,
  this.theme = const TalkerScreenTheme(),
  this.appBarTitle,
  this.itemsBuilder,
  this.appBarLeading,
  this.customSettings = const [],
  this.isLogsExpanded = true,
  this.isLogOrderReversed = true,
}) : super(key: key);