Use only relative imports for files in lib/

When create multiple files within our lib/ folder and import it in one another. Use of absolute and relative together can create confusion, To avoid this we should use relative imports for files.


Don't

import package:appname/utilities/ server_config.dart;


Do

import'./utilities/server_config.dart;