Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
name fix
  • Loading branch information
bparrishMines committed Jun 8, 2022
commit eec92f97cda8c262ad06a4d5b41736480410f2c3

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ extension _WKNSErrorDataConverter on NSErrorData {
return NSError(
domain: domain,
code: code,
localizedDescription: localiziedDescription,
localizedDescription: localizedDescription,
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class WKFrameInfoData {
class NSErrorData {
late int code;
late String domain;
late String localiziedDescription;
late String localizedDescription;
}

/// Mirror of WKScriptMessage.
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Mocks generated by Mockito 5.2.0 from annotations
// in webview_flutter_wkwebview/example/ios/.symlinks/plugins/webview_flutter_wkwebview/test/src/ui_kit/ui_kit_test.dart.
// in webview_flutter_wkwebview/test/src/ui_kit/ui_kit_test.dart.
// Do not manually edit this file.

import 'dart:async' as _i4;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ void main() {
NSErrorData(
code: 23,
domain: 'Hello',
localiziedDescription: 'localiziedDescription',
localizedDescription: 'localiziedDescription',
),
);

Expand Down Expand Up @@ -619,7 +619,7 @@ void main() {
NSErrorData(
code: 23,
domain: 'Hello',
localiziedDescription: 'localiziedDescription',
localizedDescription: 'localiziedDescription',
),
);

Expand Down