fromJson static method

LinkStyle fromJson(
  1. String value
)

Implementation

static LinkStyle fromJson(String value) =>
    LinkStyle.values.firstWhere((e) => e.name == value);