toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['app_version_id'] = _appVersionId;
map['type'] = _type;
map['version'] = _version;
map['is_force'] = _isForce;
if (_createdAtDateTime != null) {
map['created_at_date_time'] = _createdAtDateTime?.toJson();
}
return map;
}