NutrientInstantView<T extends NutrientInstantController> constructor

const NutrientInstantView<T extends NutrientInstantController>({
  1. Key? key,
  2. required String serverUrl,
  3. required String jwt,
  4. NutrientViewConfiguration? configuration,
  5. void onViewCreated(
    1. NutrientViewHandle handle
    )?,
  6. T? adapter,
  7. void onControllerReady(
    1. T controller
    )?,
})

Creates a NutrientInstantView.

Implementation

const NutrientInstantView({
  super.key,
  required this.serverUrl,
  required this.jwt,
  this.configuration,
  this.onViewCreated,
  this.adapter,
  this.onControllerReady,
});