VxApp constructor

const VxApp({
  1. Key? key,
  2. required VxAppBuilder? builder,
  3. required VxStore store,
  4. List<VxInterceptor>? interceptors = const [],
})

Implementation

const VxApp(
    {super.key,
    required this.builder,
    required this.store,
    this.interceptors = const []});