with3 method

AFWidgetID with3(
  1. Object? first,
  2. Object? second,
  3. Object? third
)
override

Implementation

AFWidgetID with3(Object? first, Object? second, Object? third) {
  return AFID.with3(
    library: library,
    codeId: codeId,
    first: first,
    second: second,
    third: third,
    creator: AFWidgetID.create
  );
}