'Conduit dart Is it possible to override the id of the ResourceOwnerTableDefenition

Hi i would like to override the id of the resourceownertabledefenition from an integer to a generated String is this possible?

class MyResource implements ResourceOwnerTableDefinition {
  @override
  String? hashedPassword;

  @override
  String? id;

  @override
  String? salt;

  @override
  ManagedSet<ManagedAuthToken>? tokens;

  @override
  String? username;

}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source