parseMySQLType function
Implementation
String parseMySQLType(dynamic rawType) {
if (rawType is Uint8List) {
return utf8.decode(rawType);
} else if (rawType is String) {
return rawType;
} else {
return rawType.toString();
}
}
String parseMySQLType(dynamic rawType) {
if (rawType is Uint8List) {
return utf8.decode(rawType);
} else if (rawType is String) {
return rawType;
} else {
return rawType.toString();
}
}