SynchData class

SynchData data model

{
  "dateRequestsAllowedTo": "2017-04-24T23:59:59+03:00",
  "resultFixesTo": "2017-05-08T23:59:59+03:00",
  "resultsRecapsTo": "2017-04-27T23:59:59+03:00",
  "allowAppealCancel": true,
  "allowNarratorErrorAppeal": false,
  "archive": true,
  "dateArchivedAt": "2017-05-12T23:59:59+03:00",
  "dateDownloadQuestionsFrom": "2017-04-20T00:00:00+03:00",
  "dateDownloadQuestionsTo": "2017-04-25T19:00:00+03:00",
  "hideQuestionsTo": "2017-04-25T23:59:59+03:00",
  "hideResultsTo": "2017-04-25T23:59:59+03:00",
  "allVerdictsDone": null,
  "instantControversial": false
}

Constructors

SynchData({required DateTime? dateRequestsAllowedTo, required DateTime? resultFixesTo, required DateTime? resultsRecapsTo, required bool allowAppealCancel, required bool? allowNarratorErrorAppeal, required bool archive, required DateTime? dateArchivedAt, required DateTime? dateDownloadQuestionsFrom, required DateTime? dateDownloadQuestionsTo, required DateTime? hideQuestionsTo, required DateTime? hideResultsTo, required DateTime? allVerdictsDone, required bool instantControversial})
SynchData.fromJson(Map<String, dynamic> json)
factory
SynchData.fromRawJson(String str)
factory

Properties

allowAppealCancel bool
final
allowNarratorErrorAppeal bool?
final
allVerdictsDone DateTime?
final
archive bool
final
dateArchivedAt DateTime?
final
dateDownloadQuestionsFrom DateTime?
final
dateDownloadQuestionsTo DateTime?
final
dateRequestsAllowedTo DateTime?
final
hashCode int
The hash code for this object.
no setteroverride
hideQuestionsTo DateTime?
final
hideResultsTo DateTime?
final
instantControversial bool
final
resultFixesTo DateTime?
final
resultsRecapsTo DateTime?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({required DateTime? dateRequestsAllowedTo, required DateTime? resultFixesTo, required DateTime? resultsRecapsTo, required bool allowAppealCancel, required bool? allowNarratorErrorAppeal, required bool archive, required DateTime? dateArchivedAt, required DateTime? dateDownloadQuestionsFrom, required DateTime? dateDownloadQuestionsTo, required DateTime? hideQuestionsTo, required DateTime? hideResultsTo, required DateTime? allVerdictsDone, required bool instantControversial}) SynchData
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toRawJson() String
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override