getShortSymbolName static method
Implementation
static String getShortSymbolName(String? contractCode) {
if (contractCode != null) {
List<String> parts = contractCode.split('_');
if (parts.length < 3) return '';
return parts[3];
}
return '';
}