SecureApplicationProvider constructor

const SecureApplicationProvider({
  1. Key? key,
  2. SecureApplicationController? secureData,
  3. required Widget child,
})

Implementation

const SecureApplicationProvider({
  Key? key,
  this.secureData,
  required Widget child,
}) : super(key: key, child: child);