copyWith method
ActionEntity
copyWith(
{ - String? id,
- String? type,
- String? group,
- ID? cubitID,
- ID? stateID,
- ID? variableID,
- String? table,
- String? select,
- int? limit,
- int? offset,
- String? orderBy,
- bool? isCount,
- List<SupasetFilterEntity>? filters,
})
Implementation
ActionEntity copyWith({
String? id,
String? type,
String? group,
ID? cubitID,
ID? stateID,
ID? variableID,
String? table,
String? select,
int? limit,
int? offset,
String? orderBy,
bool? isCount,
List<SupasetFilterEntity>? filters,
}) {
return CMSInsertAction(
id: id ?? this.id,
cubitID: cubitID ?? this.cubitID,
stateID: stateID ?? this.stateID,
variableID: variableID ?? this.variableID,
type: type ?? this.type,
group: group ?? this.group,
table: table ?? this.table,
select: select ?? this.select,
limit: limit ?? this.limit,
offset: offset ?? this.offset,
orderBy: orderBy ?? this.orderBy,
isCount: isCount ?? this.isCount,
filters: filters ?? this.filters,
);
}