getObjFuture<T> static method
Implementation
static Future<dynamic> getObjFuture<T>(String? source) async {
if (source == null || source.isEmpty) return null;
try {
return await compute(getObj, source);
} catch (e) {
return null;
}
}