LogProfile constructor

LogProfile({
  1. required String tag,
  2. required bool visible,
  3. Color color = Colors.white,
})

Implementation

LogProfile({
  required this.tag,
  required this.visible,
  this.color = Colors.white,
});