getDefaultSheet method
returns the name of the defaultSheet (the sheet which opens firstly when xlsx file is opened in excel based software).
Implementation
String? getDefaultSheet() {
if (_defaultSheet != null) {
return _defaultSheet;
} else {
String? re = _getDefaultSheet();
return re;
}
}