LCOV - code coverage report
Current view: top level - src - value.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 4 4 100.0 %
Date: 2020-06-20 22:24:18 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:flutter/foundation.dart';
       2             : 
       3             : class Value<T> extends ValueNotifier<T> {
       4           2 :   Value(T value) : super(value);
       5             : 
       6             :   Map<String, dynamic> changes = <String, dynamic>{};
       7             : 
       8           1 :   void update(String key, int op, dynamic value) {
       9           3 :     if (hasListeners) changes = {key: value};
      10           1 :     notifyListeners();
      11             :   }
      12             : }

Generated by: LCOV version 1.14