switchAppId method

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

Implementation

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