openSnaps method

Future<void> openSnaps({
  1. required String userId,
  2. String? snapName,
  3. Iterable<String>? tags,
})

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);
}