I wonder if there is a way to #define short_expression long_expression in Dart/Flutter?
For example, instead of typing
MediaQuery.of(context).size.width
// or
Locale.of(context).translate("x")
in every build function, we can
#define MQWidth MediaQuery.of(context).size.width
// or
#define Lt(x) Locale.of(context).translate("x")
then use it in every build function instead?