0 purchases
system properties
system_properties #
flutter plugin for getting system properties easily for android.
Getting Started #
import 'package:system_properties/system_properties.dart';
Future<String> getSDKVersion() async {
return await SystemProperties.getSystemProperties("ro.build.version.sdk");
}
getSDKVersion().then((version) {
print(version);
});
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.