requestPermission static method
Implementation
static Future<bool> requestPermission() async {
debugPrint('请求定位');
return true;
// FIXME:
// if (await Permission.location.request().isGranted) {
// return true;
// } else {
// // decorated.toast('需要定位权限!');
// return false;
// }
}