BlogLocale constructor

BlogLocale({
  1. required String language,
  2. required String country,
  3. required String variant,
})

Implementation

BlogLocale({
  required this.language,
  required this.country,
  required this.variant,
});