1 | // Copyright 2014 The Flutter Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. |
4 | |
5 | /// The dart:io implementation of [isCanvasKit]. |
6 | /// |
7 | /// This bool shouldn't be used outside of web. |
8 | bool get isCanvasKit { |
9 | throw UnimplementedError('isCanvasKit is not implemented for dart:io.' ); |
10 | } |
11 | |
12 | /// The dart:io implementation of [isSkwasm]. |
13 | /// |
14 | /// This bool shouldn't be used outside of web. |
15 | bool get isSkwasm { |
16 | throw UnimplementedError('isSkwasm is not implemented for dart:io.' ); |
17 | } |
18 | |