Hello! I'm trying to do a simple physical quantity conversion operation. The result is correct, but it outputs a warning to the console. What does this warning mean and how can I get rid of it?
import 'package:quantity/quantity_si.dart';
var area = Area(m2: 1);
var force = Force(N: 10);
var pressure = force / area; // => WARNING: Problem creating type instance; falling back to MiscQuantity for Dimensions [Length=-2]
print(pressure); // => 10 Pa
Hello! I'm trying to do a simple physical quantity conversion operation. The result is correct, but it outputs a warning to the console. What does this warning mean and how can I get rid of it?