getEntity method

  1. @override
Future<SimpleTextEntity?> getEntity(
  1. String? id, {
  2. dynamic onError(
    1. Exception
    )?,
})
override

Implementation

@override
Future<SimpleTextEntity?> getEntity(String? id,
    {Function(Exception)? onError}) async {
  try {
    var collection = simpleTextCollection.doc(id);
    var doc = await collection.get();
    return SimpleTextEntity.fromMap(doc.data());
  } on Exception catch (e) {
    if (onError != null) {
      onError(e);
    } else {
      print("Error whilst retrieving SimpleText with id $id");
      print("Exceptoin: $e");
    }
  }
  return null;
}