copyWith method
Implementation
ApiRequestMapEntity copyWith({
final ID? id,
final String? key,
final dynamic value,
final bool? immutable,
final bool? nullable,
final VariableTypes? type,
final ID? modelID,
}) =>
ApiRequestMapEntity(
id: id ?? this.id,
key: key ?? this.key,
value: value ?? this.value,
immutable: immutable ?? this.immutable,
type: type ?? this.type,
nullable: nullable ?? this.nullable,
modelID: modelID ?? this.modelID,
);