copyWith method
Implementation
WebApiModulesPluginsQuickbooksOnlineQuickBooksOnlinePluginLogicLocation
copyWith({
String? locationId,
String? locationName,
String? lastConnected,
String? expiresIn,
bool? expired,
}) {
return WebApiModulesPluginsQuickbooksOnlineQuickBooksOnlinePluginLogicLocation(
locationId: locationId ?? this.locationId,
locationName: locationName ?? this.locationName,
lastConnected: lastConnected ?? this.lastConnected,
expiresIn: expiresIn ?? this.expiresIn,
expired: expired ?? this.expired,
);
}