Parent constructor

Parent({
  1. required String type,
  2. bool? workspace = false,
  3. String? pageId = '',
  4. String? databaseId = '',
})

Implementation

Parent(
    {required this.type,
    this.workspace = false,
    this.pageId = '',
    this.databaseId = ''});