add method

void add(
  1. int count
)

Implementation

void add(int count) {
  if (actor.runtimeType == ProfileViewDetailed) {
    (actor as ProfileViewDetailed).followersCount += count;
  }
  // ignore: invalid_use_of_protected_member
  state.setState(() {});
}