blob: e627d19d9fb0c953dadc1e41d8591172b0da3b1f [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.6
part of engine;
class SkPicture implements ui.Picture {
final js.JsObject skPicture;
final ui.Rect cullRect;
SkPicture(this.skPicture, this.cullRect);
@override
int get approximateBytesUsed => 0;
@override
void dispose() {
// TODO: implement dispose
}
@override
Future<ui.Image> toImage(int width, int height) {
// TODO: implement toImage
return null;
}
}