Localization constructor

const Localization({
  1. required String code,
  2. String? name,
  3. String? country,
})

Create a Localization instance

Implementation

const Localization({
  required this.code,
  this.name,
  this.country,
});