Example application: https://github.com/sir-boformer/flutter_image_bugs/blob/master/lib/main.dart
When I try to load an image variant with an explicit scale, Flutter always gets the default 1.0x variant:
new Image.asset('images/test.png', scale: 3.0, width: 48.0, height: 48.0)
The automatic variant selection (scale: null) works correctly:
new Image.asset('images/test.png', width: 48.0, height: 48.0)
