M7CapturedImage.fromMap constructor

M7CapturedImage.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory M7CapturedImage.fromMap(Map<String, dynamic> map) {
  return M7CapturedImage(
    imgPath: map['imgPath'] ?? '',
    didCaptureAutomatically: map['didCaptureAutomatically'] ?? false,
  );
}