registerOwnership method Null safety

void registerOwnership(
  1. {required String source,
  2. required List<TikiSdkDataTypeEnum> type,
  3. String? origin,
  4. String? about}
)

Creates a ownership register in the blockchain.

This method creates a new transcation that will be commited in the next block in the chain. The OwnershipModel.path will be null until the transaction is commited through updatePending. If no origin is provided the default _origin will be used

Implementation

void registerOwnership(
    {required String source,
    required List<TikiSdkDataTypeEnum> type,
    String? origin,
    String? about}) {
  throw UnimplementedError();
}