most_common_user_agents 1.0.1
most_common_user_agents: ^1.0.1 copied to clipboard
A package for fetching the most common user agents
A package for fetching the most common user agents
Features #
Fetch the most common user agents for mobile and desktop devices.
Usage #
A simple usage example:
import 'package:most_common_user_agents/most_common_user_agents.dart';
void main() async {
final mobile = await UserAgents.mostCommonMobile;
print(mobile);
final desktop = await UserAgents.mostCommonDesktop;
print(desktop);
}