LocaleGender constructor

const LocaleGender(
  1. {@required String name,
  2. @required String gender,
  3. @required double probability,
  4. @required int count,
  5. @required String country_id}
)

Implementation

const LocaleGender(
    {@required this.name,
    @required this.gender,
    @required this.probability,
    @required this.count,
    @required this.country_id});