copyWith method
- AlexaSystem? system,
- PlaybackState? audioPlayer,
- Geolocation? geolocation,
Implementation
Context copyWith(
{AlexaSystem? system,
PlaybackState? audioPlayer,
Geolocation? geolocation}) {
return Context(
system: system ?? this.system,
audioPlayer: audioPlayer ?? this.audioPlayer,
geolocation: geolocation ?? this.geolocation);
}