minusTimespan method

  1. @Deprecated('Use + and - operators instead.')
LocalTime minusTimespan(
  1. Timespan span
)

Subtracts a Timespan. If span covers more than one day, the result will wrap.

Implementation

@Deprecated('Use + and - operators instead.')
LocalTime minusTimespan(Timespan span) => this - span;