getForceDirectDial method
Gets the force direct dial option from the Context
Implementation
(bool, String) getForceDirectDial() {
final value = getValue(_forceDirectDialKey);
if (value != null) {
return (true, value as String);
}
return (false, '');
}