Locale copyWith({ String? language, String? region }) { return Locale( language: language ?? this.language, region: region ?? this.region ); }