copyWith method
Implementation
BankCardInfo copyWith({
String? title,
List<BankCardActionOpenUrl>? actions,
}) => BankCardInfo(
title: title ?? this.title,
actions: actions ?? this.actions,
);
BankCardInfo copyWith({
String? title,
List<BankCardActionOpenUrl>? actions,
}) => BankCardInfo(
title: title ?? this.title,
actions: actions ?? this.actions,
);