removeTag method

Future<void> removeTag(
  1. String tag
)

Removes a tag from the room.

Implementation

Future<void> removeTag(String tag) => client.deleteRoomTag(
      client.userID!,
      id,
      tag,
    );