switchAppId method

  1. @override
FeedEntity switchAppId({
  1. required String newAppId,
})
override

Implementation

@override
FeedEntity switchAppId({required String newAppId}) {
  var newEntity = copyWith(appId: newAppId);
  return newEntity;
}