getDefaultShowCount method
接口返回默认展示tag个数
Implementation
int getDefaultShowCount() {
int defaultShowCount = 3;
if (extMap.containsKey('defaultShowCount')) {
defaultShowCount = extMap['defaultShowCount'] ?? defaultShowCount;
}
return defaultShowCount;
}