rename method
Change the name of the specified store to the specified new store name
Implementation
Future<FMTCStore> rename(String newStoreName) async {
await FMTCBackendAccess.internal.renameStore(
currentStoreName: _storeName,
newStoreName: newStoreName,
);
return FMTCStore(newStoreName);
}