fromMap static method

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

Implementation

static InAppWebViewHitTestResult? fromMap(Map<String, dynamic>? map) {
  if (map == null) {
    return null;
  }

  return InAppWebViewHitTestResult(
      type: InAppWebViewHitTestResultType.fromValue(map["type"]),
      extra: map["extra"]);
}