isHistoryTypeData method
Implementation
bool isHistoryTypeData(dynamic value) {
if(value != "" && value is HistoryType?) {
return true;
} else {
return false;
}
}
bool isHistoryTypeData(dynamic value) {
if(value != "" && value is HistoryType?) {
return true;
} else {
return false;
}
}