ContextRef constructor

ContextRef(
  1. {int? length,
  2. required String id}
)

Implementation

ContextRef({
  this.length,
  required String id,
}) : super(
        id: id,
      );