Flavor.create constructor

Flavor.create(
  1. Environment environment, {
  2. String? name,
  3. Color? color,
  4. Map<String, Object>? properties,
})

Create an instance of the flavor configuration

Implementation

Flavor.create(
  Environment environment, {
  String? name,
  Color? color,
  Map<String, Object>? properties,
}) : this._(environment, name, color, properties);