toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deviceModelName = this.deviceModelName;
final languageCode = this.languageCode;
final languageCodeFromWebview = this.languageCodeFromWebview;
final languageCodeRaw = this.languageCodeRaw;
final screenResolutionHeight = this.screenResolutionHeight;
final screenResolutionWidth = this.screenResolutionWidth;
final timezone = this.timezone;
return {
'deviceModelName': ?deviceModelName,
'languageCode': ?languageCode,
'languageCodeFromWebview': ?languageCodeFromWebview,
'languageCodeRaw': ?languageCodeRaw,
'screenResolutionHeight': ?screenResolutionHeight,
'screenResolutionWidth': ?screenResolutionWidth,
'timezone': ?timezone,
};
}