Time.fromQuarters constructor

Time.fromQuarters(
  1. Rational quarters
)

Creates a Time representing the specified number of quarters.

Implementation

factory Time.fromQuarters(Rational quarters) =>
    Time.fromUnits(TimeUnit.quarter, quarters);