There are two ways to import packages in Dart programming language, I need to know what is the difference between them both, please? Also when to use the first way and when to use the second way?
First way:
import 'dart:io';
Second way
import 'dart:io' as io;