withGlobalProperty method

void withGlobalProperty(
  1. String key,
  2. String value,
  3. bool overrideExisting
)

Implementation

void withGlobalProperty(String key, String value, bool overrideExisting){
  this.globalProperties.add(new SingularGlobalProperty(key, value, overrideExisting));
}