toJson method

Map toJson()

Implementation

Map toJson() {
  return DurationDataScheme.create(
    special_type: "durationDataScheme",
    days: inDays,
    hours: inHours,
    minutes: inMinutes,
    seconds: inSeconds,
    milliseconds: inMilliseconds,
    microseconds: inMicroseconds,
  ).toJson();
}