Serializable.withFinalProperties constructor

Serializable.withFinalProperties(
  1. List finalProperties
)

Implementors of Serializable must provide a factory constructor but since static methods are not allowed in interfaces and are not inherited by subclasses, this is here as documentation.

Implementation

factory Serializable.withFinalProperties(List<dynamic> finalProperties) {
  throw UnimplementedError();
}