double? times(num? other) { if (this == null) return null; if (other == null) return this!.toDouble(); return (this! * other).toDouble(); }