ChatSilentModeTime.fromJson constructor

ChatSilentModeTime.fromJson(
  1. Map map
)

Implementation

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