getDefaultSheet method
Returns the name of the default sheet.
Implementation
String? getDefaultSheet() {
if (_defaultSheet != null) {
return _defaultSheet;
} else {
String? re = _getDefaultSheet();
return re;
}
}
Returns the name of the default sheet.
String? getDefaultSheet() {
if (_defaultSheet != null) {
return _defaultSheet;
} else {
String? re = _getDefaultSheet();
return re;
}
}