Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation casting #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

matitalatina
Copy link

@matitalatina matitalatina commented Mar 12, 2023

First of all, thanks for the library!

I'm using
Dart SDK version: 2.19.3 (stable) (Tue Feb 28 15:52:19 2023 +0000) on "macos_arm64"

Without it, I'm getting the following errors.

I'm using Apple M1 (arm64).

lib/src/kdbx_var_dictionary.dart:56:42: Error: The argument type 'Object?' can't be assigned to the parameter type 'Uint8List'.
   - 'Object' is from 'dart:core'.
   - 'Uint8List' is from 'dart:typed_data'.
      (writer, value) => writer.writeBytes(value, writer._lengthWriter()),
                                           ^
  lib/src/kdbx_var_dictionary.dart:26:43: Error: The argument type 'Object?' can't be assigned to the parameter type 'int'.
   - 'Object' is from 'dart:core'.
      (writer, value) => writer.writeUint32(value, writer._lengthWriter()),
                                            ^
  lib/src/kdbx_var_dictionary.dart:31:43: Error: The argument type 'Object?' can't be assigned to the parameter type 'int'.
   - 'Object' is from 'dart:core'.
      (writer, value) => writer.writeUint64(value, writer._lengthWriter()),
                                            ^
  lib/src/kdbx_var_dictionary.dart:46:42: Error: The argument type 'Object?' can't be assigned to the parameter type 'int'.
   - 'Object' is from 'dart:core'.
      (writer, value) => writer.writeInt64(value, writer._lengthWriter()),
                                           ^
  lib/src/kdbx_var_dictionary.dart:36:42: Error: A value of type 'Object?' can't be assigned to a variable of type 'bool'.
   - 'Object' is from 'dart:core'.
      (writer, value) => writer.writeUint8(value ? 1 : 0, writer._lengthWriter()),
                                           ^
  lib/src/kdbx_var_dictionary.dart:41:42: Error: The argument type 'Object?' can't be assigned to the parameter type 'int'.
   - 'Object' is from 'dart:core'.
      (writer, value) => writer.writeInt32(value, writer._lengthWriter()),
                                           ^
  lib/src/kdbx_var_dictionary.dart:51:43: Error: The argument type 'Object?' can't be assigned to the parameter type 'String'.
   - 'Object' is from 'dart:core'.
      (writer, value) => writer.writeString(value, writer._lengthWriter()),

@CLAassistant
Copy link

CLAassistant commented Mar 12, 2023

CLA assistant check
All committers have signed the CLA.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants