switchAppId method Null safety

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

Implementation

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