fromJson static method
Inherited by: PollTypeQuiz PollTypeRegular
Implementation
static PollTypeRegular? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const PollTypeRegular();
}
Inherited by: PollTypeQuiz PollTypeRegular
static PollTypeRegular? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const PollTypeRegular();
}