openSnaps method
Opens StorifyMe Snaps with the specified parameters.
userId: The user ID associated with the StorifyMe Snaps.
snapName: (Optional) The name of the snap.
tags: (Optional) An iterable of tags associated with the snap.
Implementation
Future<void> openSnaps(
{required String userId, String? snapName, Iterable<String>? tags}) {
return StorifyMeSnapsPlatform.instance
.openSnaps(userId: userId, snapName: snapName, tags: tags);
}