AppConfigCluster constructor

AppConfigCluster({
  1. required String endpoint,
  2. required String id,
  3. required String name,
  4. required ClusterType type,
})

Returns a new AppConfigCluster instance.

Implementation

AppConfigCluster({
  required this.endpoint,
  required this.id,
  required this.name,
  required this.type,
});