show static method
Implementation
static Future show(BuildContext context,
{Size? ovalSize,
String? initHint,
String? smileHint,
String? blinkHint,
TextStyle? promptStyle}) {
return Navigator.push(
context,
MaterialPageRoute(
builder: (context) => FaceCollectScreen(
initHint: initHint,
smileHint: smileHint,
blinkHint: blinkHint,
promptStyle: promptStyle,
ovalSize: ovalSize,
)),
);
}