getFlag<T> method
Get Flag object
key : the name of the key relative to modification defaultValue: the returned value if the key is not found return Flag object. See Flag class
Implementation
Flag getFlag<T>(String key, T defaultValue) {
return Flag<T>(key, defaultValue, this._visitorDelegate);
}