toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final offsetSeconds = this.offsetSeconds;
  final timeExpression = this.timeExpression;
  return {
    'offsetSeconds': offsetSeconds,
    'timeExpression': timeExpression,
  };
}