Const Keyword in Flutter

const keyword used to make a variable to store a value at compile time. const var value=”Hellow” ; //accepted as value is defined at compile time // const var count; // This will cause error as count should assigned value //const var todayDate = DateTime.now() // This will throw error as value assigned at runtime. 2. … Continue reading Const Keyword in Flutter