getRoomInfo method

Future<Result<Room>> getRoomInfo({
  1. required String code,
})

Get room information by code

Implementation

Future<Result<Room>> getRoomInfo({required String code}) async {
  return await _sdk.getRoomInfo(code);
}