setup method

void setup({
  1. required String token,
})

Initital when open app or before generate shorten link

@param token access token to connecting to Bitly

Implementation

void setup({required String token}) {
  _token ??= token;
}