isFollowingUser method

Future<bool> isFollowingUser(
  1. String user
)

Check if the current user is following the specified user.

Implementation

Future<bool> isFollowingUser(String user) =>
    github.request('GET', '/user/following/$user').then((response) {
      return response.statusCode == 204;
    });