flavorPrefix method

  1. @protected
String flavorPrefix()

Implementation

@protected
String flavorPrefix() {
  const flavor = String.fromEnvironment('FLAVOR', defaultValue: '');
  return flavor.isEmpty ? '' : '${flavor}_';
}