LCOV - code coverage report
Current view: top level - src - isolate_context.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 1 1 100.0 %
Date: 2022-04-21 05:11:43 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:combine/combine.dart';
       2             : 
       3             : /// [IsolateContext] holds an argument, passed while you spawn `Isolate` and
       4             : /// [IsolateMessenger] which is used to communicate with original `Isolate`.
       5             : class IsolateContext {
       6           5 :   const IsolateContext({
       7             :     required this.argument,
       8             :     required this.messenger,
       9             :   });
      10             : 
      11             :   /// Argument, passed while you spawn `Isolate`.
      12             :   final Object? argument;
      13             : 
      14             :   /// Messenger which is used to communicate with original `Isolate`.
      15             :   final IsolateMessenger messenger;
      16             : }

Generated by: LCOV version 1.15