switchAppId method Null safety

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

Implementation

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