like function

Future<bool> like(
  1. String otherUid
)

Like other user

Implementation

Future<bool> like(String otherUid) async {
  return await toggle(
    path: 'likes/$otherUid/${FirebaseAuth.instance.currentUser!.uid}',
  );
}