chore: fix analysis checks

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2021-10-01 17:30:47 +05:30
committed by xsahil03x
parent dff64067d2
commit 1b4b4cdf00
5 changed files with 38 additions and 33 deletions
@@ -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;