I want to check if one value is greater than another value with flutter testing. I know that we can use expect to check if one value is equal to another value.
expect(valueOne, valueTwo);
But how can I check if valueOne is greaterThan valueTwo.
Thanks!