updateNasBookmark method

Future<HyperDeckRestResponse> updateNasBookmark(
  1. String url, {
  2. String? username,
  3. String? password,
})

Implementation

Future<HyperDeckRestResponse> updateNasBookmark(String url,
        {String? username, String? password}) =>
    put('/media/nas/bookmarks/${_segment(url)}', {
      if (username != null) 'username': username,
      if (password != null) 'password': password,
    });