developer_app_list 1.0.0 copy "developer_app_list: ^1.0.0" to clipboard
developer_app_list: ^1.0.0 copied to clipboard

A Dart/Flutter package to fetch a list of apps developed by a given developer from both the App Store and Play Store.

example/main.dart

import 'package:developer_app_list/developer_app_list.dart';
import 'package:developer_app_list/models/app.dart';
import 'package:developer_app_list/util/util.dart';

void main() async {
  final List<App> iosApps = await DeveloperAppList.getIosApps(
    developerId: "zipoapps/id1671444635",
  );
  Util.dPrint(iosApps);

  // final List<App> androidApps = await DeveloperAppList.getAndroidApps(
  //   developerId: "7308236621174667518",
  // );
  // Util.dPrint(androidApps);
}
2
likes
160
points
126
downloads

Publisher

verified publishersharmadhiraj.com

Weekly Downloads

A Dart/Flutter package to fetch a list of apps developed by a given developer from both the App Store and Play Store.

Homepage

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter

More

Packages that depend on developer_app_list