Add this to your main.dart
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await ScreenCorners.initScreenCorners();
runApp(const ScreenCornersApp());
}
and then voila
SomeWidget(
borderRadius: ScreenCorners.corner.value
)
No idea if I can explain it any better than that