pub_updater 0.1.1 copy "pub_updater: ^0.1.1" to clipboard
pub_updater: ^0.1.1 copied to clipboard

outdated

A Dart package which enables checking whether a package is up to date.

example/main.dart

import 'package:pub_updater/pub_updater.dart';

Future<void> main() async {
  // Initialize an instance of PubUpdater.
  final pubUpdater = PubUpdater();

  // Check whether a package is up to date.
  final isUpToDate = await pubUpdater.isUpToDate(
    packageName: 'my_package',
    currentVersion: '0.1.0',
  );

  if (!isUpToDate) {
    // Upgrade to the latest version if not up to date.
    await pubUpdater.update(packageName: 'my_package');
  }
}
58
likes
0
pub points
99%
popularity

Publisher

verified publisherverygood.ventures

A Dart package which enables checking whether a package is up to date.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http, json_annotation, process

More

Packages that depend on pub_updater