minute property

int get minute

The minute component of the time (0–59).

Example:

final dt = LocalDateTime.of(2025, 6, 27, 14, 30);
final minute = dt.minute;

Implementation

int get minute => time.minute;