Deferred loading (also called lazy loading) allows an application to load a library on demand, if and when it’s needed. To lazily load a library, you must first import it using deferred as.
import 'package:deferred/hello.dart' deferred as hello;
When you need the library, invoke loadLibrary() us...