LooView constructor

const LooView({
  1. Key? key,
  2. required Widget child,
  3. Function? onInit,
})

Implementation

const LooView({
  super.key,
  required this.child,
  this.onInit,
});