fromMap static method

ScanPaperSource fromMap(
  1. Map map
)

Implementation

static ScanPaperSource fromMap(Map<dynamic, dynamic> map) {
  int value = map["value"];
  return ScanPaperSource.fromValue(value);
}