era property

String get era

Returns the era for this date, or an empty string

See the Rust documentation for era for more information.

Additional information: 1

Implementation

String get era {
  final write = _Write();
  _icu4x_Date_era_mv1(_ffi, write._ffi);
  return write.finalize();
}