TestHelpersTestClockOrId.fromJson constructor

TestHelpersTestClockOrId.fromJson(
  1. Object? json
)

Implementation

factory TestHelpersTestClockOrId.fromJson(Object? json) {
  if (json is String) {
    return TestHelpersTestClockId(id: json);
  }
  return TestHelpersTestClock.fromJson(json);
}