fromJson static method
Inherited by: MaskPointChin MaskPointEyes MaskPointForehead MaskPointMouth
Implementation
static MaskPointChin? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const MaskPointChin();
}