copyWith method

SuggestedActionSetLoginEmailAddress copyWith({
  1. bool? canBeHidden,
})

Implementation

SuggestedActionSetLoginEmailAddress copyWith({bool? canBeHidden}) =>
    SuggestedActionSetLoginEmailAddress(
      canBeHidden: canBeHidden ?? this.canBeHidden,
    );