switchAppId method

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

Implementation

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