EnvConfigDisplay constructor

const EnvConfigDisplay({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. EnvironmentConfig config
    ),
})

Creates an EnvConfigDisplay widget.

  • builder: The required builder function that defines the UI based on the current environment configuration.

Implementation

const EnvConfigDisplay({
  super.key,
  required this.builder,
});