getMe method

Future<User> getMe()

Retrieves the Figma User in ownership of the currently used access token.

Implementation

Future<User> getMe() async =>
    await _getFigma('/me').then((data) => User.fromJson(data));