switchAppId method Null safety

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

Implementation

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