blob: e9cd97ae11b9bb3788817cdb245d917c9130ece2 [file] [log] [blame]
import '../image.dart';
/**
* Set all of the pixels of an [image] to the given [color].
*/
Image fill(Image image, int color) {
return image.fill(color);
}