getSingleMomentById static method

Future<PeamanMoment> getSingleMomentById({
  1. required String momentId,
})

Implementation

static Future<PeamanMoment> getSingleMomentById({
  required final String momentId,
}) {
  PeamanCommonHelper.printListening(text: 'momentById');
  return FeedProvider().getSingleMomentById(
    momentId: momentId,
  );
}