copyWith method

BankCardInfo copyWith({
  1. String? title,
  2. List<BankCardActionOpenUrl>? actions,
})

Implementation

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