name property

String? name
final

Name of the index.

If not set, floor will set it to the list of columns joined by '' and prefixed by 'index$tableName'. So if you have a table with name "Foo" and with an index of {"bar", "baz"}, generated index name will be 'index_Foo_bar_baz'. If you need to specify the index in a query, you should never rely on this name, instead, specify a name for your index.

Implementation

final String? name;