AppConfigEnvironment constructor

AppConfigEnvironment({
  1. required String name,
  2. required String explorer,
  3. required AppConfigCluster cluster,
})

Returns a new AppConfigEnvironment instance.

Implementation

AppConfigEnvironment({
  required this.name,
  required this.explorer,
  required this.cluster,
});