AppAnnotation.fromAnnotation constructor

AppAnnotation.fromAnnotation(
  1. DartObject annotation
)

Implementation

factory AppAnnotation.fromAnnotation(DartObject annotation) {
  final flavor = annotation.getField('flavor')?.toStringValue();

  return AppAnnotation(flavor: flavor);
}