ClearTimerAction.fromJson constructor

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

Implementation

factory ClearTimerAction.fromJson(Map<String, dynamic> json) {
  return ClearTimerAction(
    timerName: json['timerName'] as String,
  );
}