Add more data to MediaQueryData.toString (#4426)

Fixes #4421
This commit is contained in:
Adam Barth 2016-06-07 16:16:47 -07:00
parent 68f92d4f34
commit cd23ca1242

View File

@ -71,7 +71,7 @@ class MediaQueryData {
); );
@override @override
String toString() => '$runtimeType($size, $orientation)'; String toString() => '$runtimeType(size: $size, devicePixelRatio: $devicePixelRatio, padding: $padding)';
} }
/// Establishes a subtree in which media queries resolve to the given data. /// Establishes a subtree in which media queries resolve to the given data.