Flutter Improvements



Set if null   

 if(db == null){

      db = await get();

    } 

BETTER:

    db ??= await get();

Comments