feat: added result constant
add `kActivityResultOk` and `kActivityResultCanceled` constant
This commit is contained in:
parent
3cfba600b2
commit
bbe177a744
1 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,9 @@ import 'dart:convert';
|
||||||
|
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
|
const kActivityResultOk = -1;
|
||||||
|
const kActivityResultCanceled = 0;
|
||||||
|
|
||||||
class Intent {
|
class Intent {
|
||||||
final bool isNull;
|
final bool isNull;
|
||||||
final String? fromPackageName;
|
final String? fromPackageName;
|
||||||
|
|
Loading…
Reference in a new issue