copyWith method
Implementation
AuthMessage copyWith({String? title, String? hint, String? reason}) =>
AuthMessage(
title: title ?? this.title,
hint: hint ?? this.hint,
reason: reason ?? this.reason,
);
AuthMessage copyWith({String? title, String? hint, String? reason}) =>
AuthMessage(
title: title ?? this.title,
hint: hint ?? this.hint,
reason: reason ?? this.reason,
);