Link Search Menu Expand Document

Boolean Field

Table of contents

  1. Example Usage
  2. Allowed Attributes
    1. Default
    2. Required
    3. Custom Name

Example Usage

const {Model, Field} = require("fireo");

class User extends Model{
    is_student = Field.Boolean();
}

const u = User.init();
u.is_student = true

Allowed Attributes

The following attributes supported by Boolean Field.

  1. default
  2. required
  3. name
  • Default

    Default value for field. This is base attribute that is available in all fields. Read More

  • Required

    Set true if value is required for the field. This is base attribute that is available in all fields. Read More

  • Custom Name

    Set different name in Firestore instead of field name. This is base attribute that is available in all fields. Read More


Copyright © 2019 FireO All rights reserved. Powered by OctaByte