remove method

Future<void> remove(
  1. String username
)

Remove a member from the collection

@param this_ the object handle @param username the member's username

Implementation

Future<void> remove(String username) => _isolate.invoke<void>(
      #etebase_collection_member_manager_remove,
      <dynamic>[
        _pointer.address,
        username,
      ],
    );