addMicroseconds method

DateTime addMicroseconds(
  1. int amount
)

Adds the specified number of microseconds to this DateTime.

Implementation

DateTime addMicroseconds(int amount) => add(Duration(microseconds: amount));