toEntity method

  1. @override
FollowingArrayEntity toEntity({
  1. String? appId,
})
override

Implementation

@override
FollowingArrayEntity toEntity({String? appId}) {
  return FollowingArrayEntity(
    appId: appId,
    followers: (followers != null) ? followers : null,
  );
}