blob: 41ded79f5bee3e55ffb128d82cddc29faba71b32 [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);
}