toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final daysToLookBack = this.daysToLookBack;
final isSmartList = this.isSmartList;
final kind = this.kind;
final membershipDurationDays = this.membershipDurationDays;
final segment = this.segment;
return {
'daysToLookBack': ?daysToLookBack,
'isSmartList': ?isSmartList,
'kind': ?kind,
'membershipDurationDays': ?membershipDurationDays,
'segment': ?segment,
};
}