LayoutLogPrint<T> constructor

LayoutLogPrint<T>({
  1. Key? key,
  2. bool show = true,
  3. T? tag,
  4. dynamic print(
    1. String str
    )?,
  5. required Widget child,
})

Implementation

LayoutLogPrint({
  Key? key,
  this.show = true,
  this.tag,
  Function(String str)? print,
  required this.child,
})  : print = print ?? ((str) => debugPrint(str)),
      super(key: key);