ConfigurationMemberType constructor

ConfigurationMemberType({
  1. String? id,
  2. List<MemberTypeRole>? roles = const [],
  3. String? type,
})

Returns a new ConfigurationMemberType instance.

Implementation

ConfigurationMemberType({
  this.id,
  this.roles = const [],
  this.type,
});