You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
241 B

import 'package:flutter/material.dart';
class AppState {
final Locale locale;
const AppState({this.locale = const Locale('en', 'US')});
AppState copyWith({Locale? locale}) {
return AppState(locale: locale ?? this.locale);
}
}