setMicrosecond method

DateTime setMicrosecond(
  1. int microsecond
)

Change microsecond of this date

Implementation

DateTime setMicrosecond(
  int microsecond,
) =>
    DateTime(
      year,
      month,
      day,
      hour,
      minute,
      second,
      millisecond,
      microsecond,
    );