switchAppId method

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

Implementation

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