you should
import 'dart:math' as math;
instead of just import 'dart:math';
because when you use the as
keyword you provide the imported library a name so you can reference it anywhere in your file
you should
import 'dart:math' as math;
instead of just import 'dart:math';
because when you use the as
keyword you provide the imported library a name so you can reference it anywhere in your file