addMicroseconds method

LocalDateTime addMicroseconds(
  1. int microseconds
)

Returns a new LocalDateTime representing the current value with the given number of ticks added.

  • microseconds: The number of ticks to add

Returns: The current value plus the given number of ticks.

Implementation

LocalDateTime addMicroseconds(int microseconds) => TimePeriodField.microseconds.addDateTime(this, microseconds);