ChatSilentModeTime.fromJson constructor
- Map map
Implementation
factory ChatSilentModeTime.fromJson(Map map) {
  return ChatSilentModeTime(
    hour: map["hour"],
    minute: map["minute"],
  );
}factory ChatSilentModeTime.fromJson(Map map) {
  return ChatSilentModeTime(
    hour: map["hour"],
    minute: map["minute"],
  );
}