copyWith method
Implementation
VideoTextureParams copyWith({int? textureId, Size? size, BoxFitMode? fit}) {
return VideoTextureParams(
textureId: textureId ?? this.textureId,
size: size ?? this.size,
fit: fit ?? this.fit,
);
}
VideoTextureParams copyWith({int? textureId, Size? size, BoxFitMode? fit}) {
return VideoTextureParams(
textureId: textureId ?? this.textureId,
size: size ?? this.size,
fit: fit ?? this.fit,
);
}