DeltaTime.fromJson constructor

DeltaTime.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DeltaTime.fromJson(Map<String, dynamic> json) {
  return DeltaTime(
    offsetSeconds: json['offsetSeconds'] as int,
    timeExpression: json['timeExpression'] as String,
  );
}