fromValue static method

ProjectStyle fromValue(
  1. String value
)

Implementation

static ProjectStyle fromValue(String value) => values
    .firstWhere((e) => e.value == value, orElse: () => ProjectStyle._(value));