PlugFox / platform_info
Showing 2 of 6 files from the diff.

@@ -1,6 +1,9 @@
Loading
1 +
import 'package:meta/meta.dart';
2 +
1 3
import 'base_host_platform.dart';
2 4
import 'default_host_platform.dart';
3 5
4 6
/// Get host platform if dart.library.html and dart.library.io available
5 7
/// Return unknown host platform with default values
8 +
@internal
6 9
HostPlatform getHostPlatform() => const DefaultHostPlatform();

@@ -1,6 +1,6 @@
Loading
1 1
// ignore_for_file: avoid_equals_and_hash_code_on_mutable_classes
2 2
3 -
import 'package:meta/meta.dart' show immutable;
3 +
import 'package:meta/meta.dart' show immutable, visibleForTesting;
4 4
5 5
import 'base_host_platform.dart';
6 6
import 'constants.dart';
@@ -167,6 +167,7 @@
Loading
167 167
168 168
/// Fake class for test needs
169 169
@immutable
170 +
@visibleForTesting
170 171
class FakePlatform extends Platform {
171 172
  /// Fake constructor for test needs
172 173
  FakePlatform({
Files Coverage
lib 100.00%
Project Totals (7 files) 100.00%

No yaml found.

Create your codecov.yml to customize your Codecov experience

Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading