LayoutLogPrint<T> constructor

const LayoutLogPrint<T>({
  1. Key? key,
  2. T? tag,
  3. required Widget child,
})

Implementation

const LayoutLogPrint({
  Key? key,
  this.tag,
  required this.child,
}) : super(key: key);