getEntity method

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

Implementation

@override
Future<SectionEntity?> getEntity(String? id,
    {Function(Exception p1)? onError}) {
  return reference.getEntity(id, onError: onError);
}