toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'application_id'] = this.applicationId;
json[r'type'] = this.type;
json[r'token'] = this.token;
json[r'id'] = this.id;
return json;
}