FirebaseFunctionsCollectionModel<T> constructor

FirebaseFunctionsCollectionModel<T>(
  1. String endpoint, [
  2. List<T>? value
])

Abstract class for retrieving collection data of T through Functions.

Implementation

FirebaseFunctionsCollectionModel(this.endpoint, [List<T>? value])
    : super(value ?? []);