This requires the 'extension-methods' language feature to be enabled. dart code example
Example: dart extension
extension FancyNum on num {
num plus(num other) => this + other;
num times(num other) => this * other;
}
extension FancyNum on num {
num plus(num other) => this + other;
num times(num other) => this * other;
}