chore: fix analysis checks
Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
@@ -7,11 +7,11 @@ import 'package:video_thumbnail/video_thumbnail.dart';
|
||||
|
||||
///
|
||||
// ignore: prefer-match-file-name
|
||||
class IVideoService {
|
||||
IVideoService._();
|
||||
class _IVideoService {
|
||||
_IVideoService._();
|
||||
|
||||
/// Singleton instance of [IVideoService]
|
||||
static final IVideoService instance = IVideoService._();
|
||||
/// Singleton instance of [_IVideoService]
|
||||
static final _IVideoService instance = _IVideoService._();
|
||||
final _lock = Lock();
|
||||
|
||||
/// compress video from [path]
|
||||
@@ -65,6 +65,6 @@ class IVideoService {
|
||||
);
|
||||
}
|
||||
|
||||
/// Get instance of [IVideoService]
|
||||
/// Get instance of [_IVideoService]
|
||||
// ignore: non_constant_identifier_names
|
||||
IVideoService get VideoService => IVideoService.instance;
|
||||
_IVideoService get VideoService => _IVideoService.instance;
|
||||
|
||||
Reference in New Issue
Block a user