parse static method

ApplyChangesetConflict parse(
  1. int flag
)

Implementation

static ApplyChangesetConflict parse(int flag) {
  return ApplyChangesetConflict.values.firstWhere((e) => e.flag == flag);
}