TestHelpersTestClockInternalFailureEvent.fromJson constructor
TestHelpersTestClockInternalFailureEvent.fromJson(
- Object? json
Implementation
factory TestHelpersTestClockInternalFailureEvent.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return TestHelpersTestClockInternalFailureEvent(
object: TestHelpersTestClock.fromJson(map['object']));
}