• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Duit-Foundation / duit_kernel / 20170886726

12 Dec 2025 03:05PM UTC coverage: 76.396% (+0.02%) from 76.374%
20170886726

Pull #49

github

web-flow
Merge b75f75083 into 5d8920b5e
Pull Request #49: feat: Focus node management API

28 of 36 new or added lines in 3 files covered. (77.78%)

1 existing line in 1 file now uncovered.

1751 of 2292 relevant lines covered (76.4%)

4.73 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/lib/src/misc/error.dart
1
import "dart:core";
2

3
/// An [Exception] thrown when a required method implementation is missing
4
/// from a class that uses a particular mixin.
5
///
6
/// For example, if a mixin declares a method as required but a class
7
/// with that mixin does not provide an implementation, this exception
8
/// can be thrown to indicate the specific method and mixin where the
9
/// implementation is missing.
10
///
11
/// The exception message will include the method name and the mixin name
12
/// for easier debugging.
13
/// 
14
/// Example usage:
15
/// ```dart
16
/// throw MissingMethodImplementation('someMethod', 'SomeMixin');
17
/// ```
18
final class MissingMethodImplementation implements Exception {
19
  final String methodName, mixinName;
20

21
  const MissingMethodImplementation(this.methodName, this.mixinName);
28✔
22

NEW
23
  @override
×
24
  String toString() =>
NEW
25
      "Missing [$methodName] method implementation of $mixinName mixin";
×
26
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc