getString method
Implementation
String? getString() {
if (type != AttributesType.STRING) {
return null;
} else {
return _json;
}
}
String? getString() {
if (type != AttributesType.STRING) {
return null;
} else {
return _json;
}
}