getUsersWhoBlockedMe method

Future<void> getUsersWhoBlockedMe([
  1. bool server = false,
  2. dynamic callback(
    1. FlyResponse response
    )?
])

Retrieves a list of users who have blocked the current user.

Implementation

Future<void> getUsersWhoBlockedMe(
    [bool server = false, Function(FlyResponse response)? callback]) {
  throw UnimplementedError('has not been implemented.');
}