toCompanion method

MyUsersCompanion toCompanion(
  1. bool nullToAbsent
)

Implementation

MyUsersCompanion toCompanion(bool nullToAbsent) {
  return MyUsersCompanion(
    id: Value(id),
    num: Value(num),
    login:
        login == null && nullToAbsent ? const Value.absent() : Value(login),
    name: name == null && nullToAbsent ? const Value.absent() : Value(name),
    bio: bio == null && nullToAbsent ? const Value.absent() : Value(bio),
    hasPassword: Value(hasPassword),
    emails: Value(emails),
    phones: Value(phones),
    chatDirectLink: chatDirectLink == null && nullToAbsent
        ? const Value.absent()
        : Value(chatDirectLink),
    unreadChatsCount: Value(unreadChatsCount),
    status:
        status == null && nullToAbsent ? const Value.absent() : Value(status),
    avatar:
        avatar == null && nullToAbsent ? const Value.absent() : Value(avatar),
    callCover: callCover == null && nullToAbsent
        ? const Value.absent()
        : Value(callCover),
    presenceIndex: Value(presenceIndex),
    online: Value(online),
    muted:
        muted == null && nullToAbsent ? const Value.absent() : Value(muted),
    blocklistCount: blocklistCount == null && nullToAbsent
        ? const Value.absent()
        : Value(blocklistCount),
    lastSeenAt: lastSeenAt == null && nullToAbsent
        ? const Value.absent()
        : Value(lastSeenAt),
    ver: Value(ver),
    welcomeMessage: welcomeMessage == null && nullToAbsent
        ? const Value.absent()
        : Value(welcomeMessage),
  );
}