getAllowLimitedConn method
Gets the allow limited connection option from the Context
Implementation
(bool, String) getAllowLimitedConn() {
final value = getValue(_allowLimitedConnKey);
if (value != null) {
return (true, value as String);
}
return (false, '');
}