TodoLibData constructor

TodoLibData({
  1. double buttonHeight = 45,
  2. int clickInterceptInterval = 1000,
  3. double textSize = 14,
  4. Color placeholderColor = const Color(0xFFC7CCD5),
  5. Color inputTextColor = const Color(0xFF393C42),
  6. Color inputBackgroundColor = const Color(0xFFF6F7F9),
  7. ToastThemeData toastThemeData = const ToastThemeData(),
  8. String? fontFamily,
  9. List<String>? fontFamilyFallback,
  10. Widget? loadingWidget,
  11. Map<String, TextDelegate>? textDelegates,
})

Implementation

TodoLibData({
  this.buttonHeight = 45,
  this.clickInterceptInterval = 1000,
  this.textSize = 14,
  this.placeholderColor = const Color(0xFFC7CCD5),
  this.inputTextColor = const Color(0xFF393C42),
  this.inputBackgroundColor = const Color(0xFFF6F7F9),
  this.toastThemeData = const ToastThemeData(),
  this.fontFamily,
  this.fontFamilyFallback,
  this.loadingWidget,
  this.textDelegates,
}) {
  textDelegates = _updateTextDelegates(textDelegates);
}