WrapperSessionScanStartPlatformOptions.fromJson constructor

WrapperSessionScanStartPlatformOptions.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory WrapperSessionScanStartPlatformOptions.fromJson(
        Map<String, dynamic> json) =>
    WrapperSessionScanStartPlatformOptions(
      androidScanViewAttributes: json["androidScanViewAttributes"] == null
          ? null
          : AndroidScanViewAttributesConfig.fromJson(
              json["androidScanViewAttributes"]),
    );