radarr_flutter 3.0.0 copy "radarr_flutter: ^3.0.0" to clipboard
radarr_flutter: ^3.0.0 copied to clipboard

Facilitate the communication to and from Radarr's API, a movie collection manager for Usenet and BitTorrent users.

example/main.dart

import 'package:radarr_flutter/radarr.dart';

void main() async {
  // The host must include the protocol
  // If required, the host should include the port and the base URL as well
  String host = '';
  // Your key can be fetched from the Radarr web GUI
  String key = '';
  Radarr api = Radarr(host: host, apiKey: key);
  // Run your commands
  // Example to get and print the title of the movie with identifier 1
  // api.movie.get(movieId: 1).then((data) => print(data.title));
  api.movie.getAll().then((data) => print(data.first.images!.first.url));
}
0
likes
0
points
17
downloads

Publisher

verified publishermeetdhanraj.rocks

Weekly Downloads

Facilitate the communication to and from Radarr's API, a movie collection manager for Usenet and BitTorrent users.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

dio, json_annotation

More

Packages that depend on radarr_flutter