fromJson static method

ComponentDirection? fromJson(
  1. Object? value
)

Implementation

static ComponentDirection? fromJson(Object? value) => switch (value) {
  'ltr' => ComponentDirection.ltr,
  'rtl' => ComponentDirection.rtl,
  _ => null,
};