pickImage static method
Implementation
static pickImage({height, width, bool camera = true}) async {
return await picker.pickImage(
source: camera ? ImageSource.camera : ImageSource.gallery,
maxWidth: width ?? 100,
maxHeight: height ?? 100,
// imageQuality: b
);
}