BugseeSecureView constructor

const BugseeSecureView({
  1. Key? key,
  2. Widget? child,
  3. bool? enabled,
})

Implementation

const BugseeSecureView({Key? key, Widget? child, bool? enabled})
    : enabled = enabled ?? true,
      super(key: key, child: child);