copyWith method

Orientation$Response copyWith({
  1. String? orientation,
})

Implementation

Orientation$Response copyWith({String? orientation}) {
  return Orientation$Response(orientation: orientation ?? this.orientation);
}