getOwner method

  1. @override
Future<ID?> getOwner(
  1. ID group
)
override

Retrieves the current owner ID of a group (async).

Parameters:

  • group : Unique ID of the target group

Returns: Owner ID (null if the group does not exist or has no owner)

Implementation

@override
Future<ID?> getOwner(ID group) async => await delegate.getOwner(group);