setGroupExpand method

  1. @override
Future<void> setGroupExpand({
  1. required String groupTag,
  2. required bool isExpand,
})
override

Sets the expansion state of a group.

Implementation

@override
Future<void> setGroupExpand({required String groupTag, required bool isExpand}) async {
  return await methodChannel.invokeMethod('setGroupExpand', {
    "groupTag": groupTag,
    "isExpand": isExpand,
  });
}