SolarDate constructor

SolarDate([
  1. String? format
])

Implementation

SolarDate([String? format]) {
  if (format != null) {
    _defaultFormat = format;
  }

  _getNow = _now();
  _getDate = _now();
}