addTag method

Future<void> addTag(
  1. String tag, {
  2. double? order,
})

Add a tag to the room.

Implementation

Future<void> addTag(String tag, {double? order}) => client.setRoomTag(
      client.userID!,
      id,
      tag,
      order: order,
    );