UserWithheld constructor

const UserWithheld({
  1. @JsonKey(name: 'country_codes') required List<Country> countries,
})

Implementation

const factory UserWithheld({
  /// Provides a list of countries where this user is not available.
  @JsonKey(name: 'country_codes') required List<Country> countries,
}) = _UserWithheld;