/twitcasting_kit

A flutter package to call twitcasting api.

Primary LanguageDartApache License 2.0Apache-2.0

twitcasting_kit

A Flutter package to call Twitcasting api.

Twitcasting API V2 Document

Initialize Twitcasting

Twitcasting.initialize(TwitcastingConfig(clientId, clientSecret));

Usage

final liveService = Twitcasting.getInstance().apiClient.liveService;
    
liveService.getRecommendedLives().then((lives) {
  // TODO
});

liveService.getLive(movieId).then((live) {
  // TODO
});

liveService.getNewLives().then((lives) {
  // TODO
});