copyWith method

LinkTokenCreateRequestUpdate copyWith({
  1. bool? accountSelectionEnabled,
})

Implementation

LinkTokenCreateRequestUpdate copyWith({bool? accountSelectionEnabled}) {
  return LinkTokenCreateRequestUpdate(
      accountSelectionEnabled:
          accountSelectionEnabled ?? this.accountSelectionEnabled);
}