copyWith method

I18nErrorMessage copyWith({
  1. String? i18nKey,
  2. List<String>? parameters,
})

Implementation

I18nErrorMessage copyWith({String? i18nKey, List<String>? parameters}) {
  return I18nErrorMessage(
    i18nKey: i18nKey ?? this.i18nKey,
    parameters: parameters ?? this.parameters,
  );
}