addOrSubtractMicroseconds method
Adds or subtracts the specified number of microseconds from this DateTime. Using a positive value (e.g., 1) adds microseconds, while a negative value (e.g., -1) subtracts microseconds.
Implementation
DateTime addOrSubtractMicroseconds(int microseconds) =>
add(Duration(microseconds: microseconds));