getGroup static method

Future<Group> getGroup(
  1. String groupId
)

Implementation

static Future<Group> getGroup(String groupId) {
  return NativeBridge.async('Communities.getGroup', groupId)
      .then((result) => Group.fromJSON(jsonDecode(result)));
}