deepEquals method

  1. @Deprecated('deepEquals will be removed in future releases. Please, use strictEquals instead')
bool deepEquals(
  1. Object other
)

Whether this element is equals than the other EasyText comparing its text and styles

Implementation

@Deprecated(
    'deepEquals will be removed in future releases. Please, use strictEquals instead')
bool deepEquals(Object other) =>
    other is EasyText && text == other.text && styles == other.styles;