copyWith method

NECallkitVideoValue copyWith({
  1. int? width,
  2. int? height,
  3. int? rotation,
})

Implementation

NECallkitVideoValue copyWith({
  int? width,
  int? height,
  int? rotation,
}) {
  return NECallkitVideoValue(
    width: width ?? this.width,
    height: height ?? this.height,
    rotation: rotation ?? this.rotation,
  );
}