copyWith method
Implementation
Licence copyWith({
String? licenceCode,
String? companyCode,
String? company,
bool? allowed,
}) =>
Licence(
licenceCode: licenceCode ?? this.licenceCode,
companyCode: companyCode ?? this.companyCode,
company: company ?? this.company,
allowed: allowed ?? this.allowed,
);