resolveAuthor method

Future<User> resolveAuthor({
  1. bool force = false,
})

Implementation

Future<User> resolveAuthor({bool force = false}) async {
  final author = await _dataStore.user.get(authorId!.value, force);
  return author!;
}