Delay.fromJson constructor

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

Implementation

factory Delay.fromJson(Map<String, dynamic> json) => Delay(
      by: json["by"],
      unit: json["unit"],
    );