TestHelpersTestClockInternalFailureEvent.fromJson constructor

TestHelpersTestClockInternalFailureEvent.fromJson(
  1. Object? json
)

Implementation

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