String? parseOutputSTRING(Object? value) { if (value == null) return null; if (value is String) return value; var s = '$value'; return s; }