copyWith method

NotificationSchemeId copyWith({
  1. String? id,
})

Implementation

NotificationSchemeId copyWith({String? id}) {
  return NotificationSchemeId(
    id: id ?? this.id,
  );
}