findById method
Implementation
T? findById(String id) {
Map<String, dynamic>? map = _harnCollection.findById(id);
T? response = map != null ? fromMap(map) : null;
harnLog.register({"findById": response});
return response;
}
T? findById(String id) {
Map<String, dynamic>? map = _harnCollection.findById(id);
T? response = map != null ? fromMap(map) : null;
harnLog.register({"findById": response});
return response;
}